example below
#include <IE.au3>
#include <MsgBoxConstants.au3>
ConsoleWrite(@CRLF & @CRLF & @CRLF)
ConsoleWrite('! Look what happens when _IEErrorNotify is ON' & @CRLF)
Local $oIE = _IECreate('www.google') ; URL is broken
Local $oForm = _IEFormGetObjByName($oIE, "gbqf")
$oForm = _IEFormGetObjByName($oIE, "gbqf")
Local $oQuery = _IEFormElementGetObjByName($oForm, "q")
_IEFormElementSetValue($oQuery, "AutoIt IE.au3")
_IEFormSubmit($oForm)
_IEQuit($oIE)
ConsoleWrite('! T