home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / autoit-v3-setup.exe / Examples / ProcessWaitClose.au3 < prev    next >
Text File  |  2004-09-22  |  205b  |  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.