01-15-2010, 12:40 AM
Hi Noopur,
Let me clear you with an example of Editbox in a Web Application.
In the same way, you can implement in other environments as well
Let me clear you with an example of Editbox in a Web Application.
Code:
set textbox_obj=Description.Create
textbox_obj("micclass").Value="WebEdit"
Set obj=Browser(...).Page(..).ChildObjects(textbox_obj)
For i=0 to obj.count-1
obj(i).Set "Sample Input"
Next
In the same way, you can implement in other environments as well