CustomerSearch.Customers.Select ("ARUNDEL, CLAUDE") How do I get a different one from list everytime?

1

There are 1 best solutions below

1
On

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