Hi all, Whats the trick(if any) to accessing a Windows Text box control's text property by simply calling it by name instead of by the "ClassNN" value?
Heres the deal - I have to store all of my textbox controls as constants because the only way I can access the actual text in them or set text in them is by the following identifier/Control ID: "ClassNN:WindowsForms10.EDIT.app.0.c8febe_r16_ad123"
The problem is that on occassion, some of the "ClassNN..." values do change and this of course messes up the script.
Here is the actual "name" of the text field Im trying to access: uploadHostUploadServerTextBox
However, when I try to set the text of this control using "uploadHostUploadServerTextBox" as the control ID, it doesnt work. Ive tried ControlSetText and ControlSend.
What am I doing wrong here???
Thanks!