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 goes blank, 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
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