Hi Vbscript Programmer Professionals,
There are 4 list boxes with 10 items in each of the list boxes. Which brings us to 40 total items.
From the example explained below I believe that would lead us to 210 test cases or iterations.
I build a Data sheet on Excel create a data list something similar to below.
ListBox1 ListBox2 ListBox3 ListBox4
L1Test 1 L2Test1 L3Test1 L4Test1
L1Test2 L2Test2 L3Test2 L4Test2
L1Test3 L2Test3 L3Test3 L4Test3
L1Test4 L2Test4 L3Test4 L4Test4
L1Test5 L2Test5 L3Test5 L4Test5
L1Test6 L2Test6 L3Test6 L4Test6
L1Test7 L2Test7 L3Test7 L4Test7
L1Test8 L2Test8 L3Test8 L4Test8
L1Test9 L2Test9 L3Test9 L4Test9
L1Test10 L2Test10 L3Test10 L4Test10
I want to read the first value from the Listbox 1 and then iterate through the rest of the listbox values one after the other or together. I hope I may need to write 4 for loops to read the values and some inter-dependent for loops.
Can anybody help me how to write the code for this.