NAME
NEXT Keyword
SYNOPSIS
FOR counter = start TO end [STEP increment]
[statementblock]
NEXT [counter [,counter]...]
o counter A numeric variable used as the loop counter.
o start and end The initial and final values of the counter.
o increment The amount the counter is changed each time through
the loop.
DESCRIPTION
Increments and tests the counter in a FOR...NEXT loop or, when used with
RESUME, continues execution from an error-trapping handler.
SEE ALSO
FOR...NEXT RESUME