Forum Discussion
tristaanogre
14 years agoEsteemed Contributor
Several ways, actually.
Say, for example, your TextBox is referenced as Aliases.MyApp.MyTextBox.
Depending upon the application, component, etc., any number of these could work.
This is just a sampling, you can find more information on interacting with edit controls at http://smartbear.com/support/viewarticle/14840/
Say, for example, your TextBox is referenced as Aliases.MyApp.MyTextBox.
Depending upon the application, component, etc., any number of these could work.
Aliases.MyApp.MyTextBox.Keys("This is my text")Aliases.MyApp.MyTextBox.SetText("This is my text")Aliases.MyApp.MyTextBox.wText = "This is my text"
Aliases.MyApp.MyTextBox.value= "This is my text"
This is just a sampling, you can find more information on interacting with edit controls at http://smartbear.com/support/viewarticle/14840/