29-08-19 12:01 PM
I am trying to enter a password into a Citrix window using global send key events and the username works fine, but I cannot send a password as is. My guess is that I would need to create individual key events for each special character, but that would reveal too much of the password in the design of the action.
Is there another approach?
--------------------------------------------------Answered! Go to Answer.
24-02-20 02:22 PM
24-02-20 02:22 PM
28-02-20 07:35 AM
16-06-20 04:19 PM
String UpperLetters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; String LowerLetters = "abcdefghijklmnopqrstuvwxyz"; for (int i = 0; i < UpperLetters.Length; i++) { inputString = inputString.Replace(UpperLetters[i].ToString(), "<{#!#}"+LowerLetters[i].ToString()+">{#!#}"); } inputString = inputString.Replace("#!#", "SHIFT"); outputString = inputString;