how to PAUSE
Is there a way I can pause the execution of say DSN dilaog box opening up? For example I have this:
ExecWait 'rundll32.exe shell32.dll,Control_RunDLL "$SYSDIR\odbccp32.cpl",'
How can I postpone it for say 5 seconds?
Much Appreciated.
Archive: how to PAUSE
how to PAUSE
Is there a way I can pause the execution of say DSN dilaog box opening up? For example I have this:
ExecWait 'rundll32.exe shell32.dll,Control_RunDLL "$SYSDIR\odbccp32.cpl",'
How can I postpone it for say 5 seconds?
Much Appreciated.
use
sleep sleeptime_in_ms
Pauses execution in the installer for sleeptime_in_ms milliseconds. sleeptime_in_ms can be a variable, i.e. "$0" or a number, i.e. "666".
Thanks a bunch!