DELAY.DLL    

VDS extension written by Ralph Ludwig

Version 1.0  14.9.1998

Replacement for the VDS-WAIT command. 
It enables you to generate delays in milliseconds.
 
The script must start with a <External DELAY> command.

The file delay.dll must be accessible. Place it either 
in your script directory or in your windows directory.


Syntax:

<variable> = @delay(value)

Description:
<variable> = any vds-variable  (only a dummy, returns given value)
value	   = delay in milliseconds

Example:

rem include the dll
external delay.dll

rem time before delay
%y = @DATETIME(ss)

rem call function with 5000ms (= 5 seconds)
%x = @DELAY(5000)

rem time after delay
%z = @DATETIME(ss)
warn %y - %z




If you find bugs or have any suggestions,
please write to ralphl@basman.de

