| Arguments:
counter
Numeric variable used as a loop counter. The variable can't
be an array element.
start
Initial value of counter.
end
Final value of counter.
step
Amount counter is changed each time through the loop. If
not specified, step defaults to one.
statements
One or more statements between For and Next that are executed
the specified number of times
|