I want to see all the properties of agent name in login
window. I will use the script
Set a=Window("FR").WinEdit("Agent Name:").Gettoproperties( )
msgbox
but my question is how to use the msgbox if i use a it will
display only a, so anyone pls let me know how to get the
display of all the properties using GetToProperties () or
GetRoProperties (). Thanks a lot
Answer Posted / sreekanth chilam
Hi,
Try with the below code , you will get the solution.
set a=Window("FR").WinEdit("Agent Name:").Gettoproperties( )
Prop_Count=a.count()
For i=0 to (Prop_Count-1)
msgbox a(i)
Next
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Explain the difference between call to action and copy action?
action contains public and private functions but do we resuable that action or not..If it is reusable How..plz tell me the ans
what is the latest version of QTP? Main difference between 9.2 and 10 version
Hi All, How to get repeated word in string . Thanks Balaji
how to prepared for first for the first interview?
Why to use descriptive programming?
In the website, the protocol has been changed http: to https what you will do? Tell me your approach?
Explain how you can find the absolute value of the number in qtp?
How will you declare a variable in qtp?
I am sathish , i want to test the Application of JIL.org ,Mobile Emulator ,by using QTP10.0. I am trying to do testing on that Application , but Child Objects are not identified by the QTP. Please can any one help me
Does QTP record on Objects created on XWindows Environment?
Why bpt?
How to create scenario selector
what is the frame work in J-meter?
i have an external excel datasheet where it only contains 3 rows. after qtp executed the code to import the datasheet, the datatable getrowcount method now gives me a different value, lets say 60,000+ instead of only 3. i did not have any values starting from row 4 of my excel file. why is this happening? this also results to the qtp report to load for a very long time.