home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / _IEErrorNotify.au3 < prev    next >
Encoding:
Text File  |  2006-07-14  |  457 b   |  12 lines

  1. ; *******************************************************
  2. ; Example 1 - Check the current status of _IEErrorNotif, turn it off if on, on if off
  3. ; *******************************************************
  4. ;
  5. #include <IE.au3>
  6. If _IEErrorNotify () Then
  7.     MsgBox(0, "_IEErrorNotify Status", "Notification is ON, turning it OFF")
  8.     _IEErrorNotify (1)
  9. Else
  10.     MsgBox(0, "_IEErrorNotify Status", "Notification is OFF, turning it ON")
  11.     _IEErrorNotify (0)
  12. EndIf