Wait Statement/text/sbasic/shared/03130600.xhpSun Microsystems, Inc.Wait statementWait StatementInterrupts the program execution for the amount of time that you specify in milliseconds.Wait millisecmillisec: Numeric expression that contains the amount of time (in milliseconds) to wait before the program is executed.Sub ExampleWaitDim lTick As Long lTick = GetSystemTicks() Wait 2000 lTick = (GetSystemTicks() - lTick) MsgBox "" & lTick & " Ticks" ,0,"The pause lasted"End SubWaitUntil statement