qck.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
WHILE...WEND Statement
  Summary  Details  Example                Contents  Index  Back
──────────────────────────────────────────────────────────────────────────────
 Executes a series of statements in a loop as long as a specified condition
 is true. The DO...LOOP statement provides a more powerful and flexible loop
 control structure. See: DO...LOOP Statement
 
    WHILE condition
         statementblock
    WEND
 
    ■ condition         Numeric expression that evaluates as True (nonzero)
                        or False (zero)
 
    ■ statementblock    One or more valid statements on one or more lines
 
 See Also
    DO...LOOP Statement              FOR...NEXT Statement
    Loops and Decision Structures