home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / software / vyzkuste / autoit / autoit-v3-setup.exe / Examples / ProcessWaitClose.au3 < prev    next >
Encoding:
Text File  |  2004-09-22  |  205 b   |  7 lines

  1. ;waits until no instance of notepad.exe exists
  2. ProcessWaitClose("notepad.exe")
  3.  
  4. ; This will wait until this particular instance of notepad has exited
  5. $PID = Run("notepad.exe")
  6. ProcessWaitClose($PID)
  7.