UNTIL

UNTIL Expression

End 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