Reputation: 1
CustomerSearch.Customers.Select ("ARUNDEL, CLAUDE") How do I get a different one from list everytime?
Upvotes: 0
Views: 83
Reputation: 31
You could use the following:
[ ] INTEGER i
[-] for(i = 1; i < 4; ++i)
[ ] TestApplication.ListBoxDialog.TheListBox.Select(i)
[ ] String sList = TestApplication.ListBoxDialog.TheListBox.GetItemText(i)
[ ] Print("List Box Selection = " + sList)
John
Upvotes: 2