FOR statement
For counter = start To end [ Step step ]
[ statements ]
[ Exit For ]
Next
Repeats a group of statements a specified number of times.
Example:
s = ""
For i = 0 To 10 Step 2
If s <> "" Then
s = s + ","
End If
s = s + CStr(i)