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 \"
You need to initialize your variables:
y = 0 Do until y=5 msgbox "msgbox 1 loop test " & y z = 0 Do Until z=5 msgbox "msgbox 2 loop test " & z z=z+1 loop y=y+1 loop
Without z = 0 the second loop won't be entered after the first turn.
z = 0