The DELAY statement suspends the execution of the next statement in the application program for the specified period of time.
|
The maximum wait time is 23 hours and 59 minutes.
For example:
delay (20);
suspends execution for 20 milliseconds.
delay (10**3);
suspends execution for one second.
delay (10*10**3);
suspends execution for ten seconds.