sudhir_optima
14 years agoContributor
How to get run time text value
I want to get run time text value, put it in a variable. Later want to use this variable.
I have create two function as
I have create two function as
Below function get the run time text value from text field. Is it correct ?
function GetDatasetName()
{
var name= Aliases.QBIS.DataSetFactConfigWizard.wizDataSetFactConfigure.completionWizardPage1.txtRenameDataset.get_EditValue()
return(name)
}
Now created below function which store balve text value into a variable
function SetVarDatasetName()
{
ProjectSuite.Variables.var_DatasetName=GetDatasetName()
}
but it seems it is wrong.Because I am trying to perform some action on the object which has the name store in function GetDatasetName()