| .FOR...NEXT Statement QuickSCREENi |
|
  QuickSCREEN       Details       Example       Contents       Index |
| ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ |
| FOR...NEXT - a control flow statement that repeats a block of |
|              statements a specified number of times |
| Syntax |
|   FOR counter = start TO end [STEP increment] |
|     [statements] |
|   NEXT [counter [,counter...]] |
|     ž counter is a numeric variable used as the loop counter |
|     ž start is the initial value and end is the final value of the counter |
|     ž increment is the amount the counter is incremented each time |
|       through the loop |
|
See Also  DO...LOOP   WHILE...WEND |