Wait Statement [Runtime]/text/sbasic/shared/03130600.xhpSun Microsystems, Inc.converted from old format - fpeWait statementWait Statement [Runtime]Interrupts the program execution for the amount of time that you specify in milliseconds.Syntax:Wait millisecParameters:millisec: Numeric expression that contains the amount of time (in milliseconds) to wait before the program is executed.Example:Sub ExampleWaitDim lTick As LonglTick = GetSystemTicks()wait 2000lTick = (GetSystemTicks() - lTick)MsgBox "" & lTick & " Ticks" ,0,"The pause lasted"End Sub