Site hosted by Angelfire.com: Build your free website today!
NAME
  WHILE...WEND Statement

SYNOPSIS
  WHILE condition
  .
  .
  .
  WEND
      o condition    A numeric expression that Basic evaluates as true
                     (nonzero) or false (zero).
      o DO...LOOP provides a better way to execute statements in a
        program loop.

DESCRIPTION
  Executes a series of statements as long as a specified condition is true.

SEE ALSO
  DO...LOOP FOR...NEXT