Answer Posted / manjunathareddy
Dictionary object is similar to a typical array,
it uses unique key associated with every item,it helps you
call the item whenever required.
Example:-
Dim Dict
Set Dict=CreateObject("Scripting.Dictionary")
Dict.Add "A","Apple"
Dict.Add "B","Banana"
i=Dict.Items
j=Dict.Keys
For k= 0 to Dict.Count - 1
Msgbox j(k)&": "&i(k)
Next
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
in my application,validation message has in japanise language.how to validate this message is appears properly or not
How can I change object description or check point values in qtp?
Hi All, I Want To excute scripts batch without using QC .I need code for that Thanks Balaji
How does you test a weblink which is changing dynamically?
what is actually contain test report? can anybody post the test report
Do you know SQL? I know SQL but i don't have any experience...that's it..No more questions ...simply he said " you can leave for the day" ...guys prepare SQL Quires before attending interview in bank of america...
Can the user toggle between using Local OR and shared OR for the same action?
What is the basic concept of quicktest professional?
How many types of recording modes in the qtp?
How to define array in qtp?
Explain the differences between table and db checkpoints?
Give the syntax to load function at run time.
How do client side image and server side image work?
explain how to write vb script in qtp?when will you write own script?
we add library file used in test via settings or through "ExecuteFile" command. when we implement framework do we make common library file and load the same for all the test cases execution?