עזרה עבור LibreOfficeDev 7.4
Interrupts the program execution for the amount of time that you specify in milliseconds.
Wait millisec
\
Sub ExampleWait
Dim lTick As Long
lTick = GetSystemTicks()
Wait 2000
lTick = (GetSystemTicks() - lTick)
MsgBox "" & lTick & " Ticks" ,0,"The pause lasted"
End Sub