I am trying to know how to, or even know if it is possible to, loop inside a loop in VBScript.
Here is what logically world work:
Do until y=5
msgbox "msgbox 1 loop test"
Do Until z=5
msgbox "msgbox 2 loop test"
z=z+1
loop
y=y+1
loop
That code should loop 'msgbox 2' 25 times and 'msgbox 1' 5 times but it doesn't.
I have yet to get an answer. This is my last resource of information so please help. Thanks