Wait Statement

Interrupts the program execution for the amount of time that you specify in milliseconds.

Syntax:

Wait millisec

پارامېتىر

millisec: Numeric expression that contains the amount of time (in milliseconds) to wait before the program is executed.

Error codes:

D'oh! You found a bug (text/sbasic/shared/00000003.xhp#err5 not found).

مىسال:

Sub ExampleWait

Dim lTick As Long

    lTick = GetSystemTicks()

    Wait 2000

    lTick = (GetSystemTicks() - lTick)

    MsgBox "" & lTick & " Ticks" ,0,"The pause lasted"

End Sub