home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1999 January
/
pcwk_01_1999.iso
/
Top100sh
/
Macro
/
GrounC
/
data1.cab
/
Example_Files
/
Sample5.gc
< prev
next >
Wrap
Text File
|
1998-08-20
|
422b
|
11 lines
//WaitForProgram Example
RunProgram("calc")
WaitForProgram()
//This WaitForProgram will wait until Calculator is closed before executing the rest of the macro.
RunProgram("Notepad")
Delay(1000)
SendKeysToWindow("Untitled - Notepad","Calculator will start in 3 seconds.")
//This WaitForProgram will wait 3 seconds (3000 miliseconds) before executing the rest of the macro.
WaitForProgram(3000)
RunProgram("calc")