When the For/Next loop is completely pass through, the counting variable is set to the "to-value" + 1
If you write:
Code: Select all
For i = 0 To 10
; Do something
Next i
Constructs like this one will beginners drive crazy
Code: Select all
For i = 0 To 10
Debug Str(i) + " / " + Str(j)
For j = 0 To 10
; Do something other
Next j
Next i
Edit: Edited the subject line to [no need]