CustomerSearch.Customers.Select ("ARUNDEL, CLAUDE") How do I get a different one from list everytime?
Asked
Active
Viewed 75 times
1 Answers
2
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

John Lyttle
- 31
- 1
-
Thank you so much for your great help! – EllieFox Nov 27 '18 at 10:05