ContributionsMost RecentMost LikesSolutionsRe: Global Variable Issue : Unable to access parameter value across script units Hi, Basically i want to retrieve data from different column ofsingle row in excel and store it in array, later split it to different parameter name like parameter1, parameter2..etc to use further in different script unit. With the above code,it did not work, so tried with project.variables as below, but here i am facing errorwhile adding normal variable itself. But i want to add different variable name like parameter1, parameter2...etc through loop where 1,2... are variables. Global Variable Issue : Unable to access parameter value across script units Hi, I am not ableto access variable value across script units. In below code we have 2 function in 2 different units and have declared as global variable and useunit, but still we are not able to get parameter value when the control passes to T() function in another unit and we are getting error "Type mismatch: 'Parameter'". /////Script Unit1 'USEUNITUnit2 Dim Parameter, Increment Function Test Increment = "" For k = 1 to 5 Increment = Increment & k & ";" Next Parameter = Split(Increment,";") Unit2.T() End Function ////Script Unit2 Dim Parameter Function T() log.message Parameter(2) log.message Parameter(3) End Function Regards Sandhya Re: Unable to enter password in WndClass: TcxCustomInnerTextEdit type password field Hi, Thanks for your suggesstions. Aliases.MyLongControlName.Keys(Project.Variables.Password + [Tab]) This gave me syntax error, same thing i split into 2 statements as below and it works as expected. Aliases.LandmarkII.frmLogon.edtPassword.TcxCustomInnerTextEdit.SetText(Project.Variables.Password) Aliases.LandmarkII.frmLogon.edtPassword.TcxCustomInnerTextEdit.Keys "[Tab]" Thanks. Its resolved. Regards Sandhya Unable to enter password in WndClass: TcxCustomInnerTextEdit type password field Hi, We are facing issue with password type field. As per below code after it enters password, OK button is not enabled. We have checked information on working with password type variable, where only SetText and Keys will work, but here even though it enters password its not working like manual steps(where OK button will be enabled after entering password). If we click on password field it goesblank, same thing with user name field, user name is retained it will not be blank.Please let us know your inputs. Password variable created in project > variables tab as below Regards Sandhya Solved