Wait

Description

Waits for the specified number of seconds and then returns

Syntax

Wait (time)

Parameters

time

Integer, input

 

The number of seconds to wait.

Remarks

This is a PASSPORT command.

Example

Sub ZMain()
Wait(10)
MsgBox "Ten seconds has expired."
End Sub