◄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►