How to retrieve values, from different inactive textfields, and put all these under each other in a split, in an excel-table?

Showing Answers 1 - 6 of 6 Answers

You can retrieve values stored in WebEdit by using the GetROProperty:

ObjValue=Browser("Browser").Page("Page").WebEdit("WebEdit").GetROProperty ("value")

  Was this answer useful?  Yes


'''Code to Capture the data in an array List
''' Assuming all the Text Fields are in the same Frame
  'Descriptive Programming for all the WebEdits
   Set   objDesc = Browser(Main).Page(Page).Frame(frm).WebEdit("disable = True")
  
   Dim ObjList(objDesc.Count)

   For intCnt =0 to UBound(ObjList)
         ObjList(intCnt) = objDesc(intCnt).GetROProperty("value")& ","
   Next

''''Code to set the Above String in Excel.



Regards
Nawab

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions