Hi,
I am using input dialog to let the user key in the password.
Next, it will key in the password into the secure text.
However, it shows this error when I run the program.
May I know what is the problem?
Thank you
Hi,
I am using input dialog to let the user key in the password.
Next, it will key in the password into the secure text.
However, it shows this error when I run the program.
May I know what is the problem?
Thank you
Check whether the below post will help solve your problem…
Hi @Ying_Zhen_Lee,
The Input Dialog will output a string (e.g. myString as output to Input Dialog)
So create a securestring variable (e.g. mySecureString as variable name).
Add an Assign activity: mySecureString = (new System.Net.NetworkCredential(“”, “myString”)).SecurePassword
Then use the mySecureString variable in the Type Into Secure Text activity.
Thanks and regards,
Despi
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.