Search notes:

VBScript: for … to

for i = 1 to 10
  wscript.echo (i)
next

wscript.echo("---")

for i = 0 to 100 step 11
  wscript.echo (i)
next
Github repository about-VBScript, path: /language/for_start_to_end.vbs

See also

VBScript

Index