UNTIL

UNTIL Expression

Ends a loop structure delimited by REPEAT ... UNTIL instructions. The loop is repeated until Expression is true.


Example

PUBLIC SUB Form_Open()

  DIM I AS Integer

  REPEAT 
    PRINT Timer
  UNTIL Timer > 10

END


See also

BREAK, CONTINUE, DO, FOR, FOR EACH, LOOP, REPEAT, WHILE, WITH


Previous: Upper$ / UCase$ Next: TypeOf