| .DO...LOOP Statement QuickSCREENi |
|
  QuickSCREEN       Details       Example       Contents       Index |
| ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ |
| DO...LOOP - a control flow statement that repeats a block of statements |
|             while a condition is true or until a condition becomes true |
|
| Syntax 1 |
|   DO [{WHILE | UNTIL} booleanexpression] |
|     [statementblock] |
|   LOOP |
|
| Syntax 2 |
|   DO |
|     [statementblock] |
|   LOOP [{WHILE | UNTIL} booleanexpression] |
|
|   ž booleanexpression is an expression that will return non-zero (true) |
|     or zero (false). |
|   ž statementblock is any number of statements on one or more lines which |
|     are to be executed as long as booleanexpression is true. |
|
See Also  WHILE...WEND   FOR...NEXT |