home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 January / PCWELT_1_2006.ISO / pcwsoft / 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.