dersiniar Posted July 1, 2022 Posted July 1, 2022 I try to figure out how to bypass $g_oHTTP^ ERROR that sometimes might occur in my program, ==> The requested action with this object has failed.: $g_oHTTP.Send() $g_oHTTP^ ERROR Like IF @error then Func() But all ways i try, they not seem to work
Musashi Posted July 1, 2022 Posted July 1, 2022 A COM Error Handler might help to get more details about the problem. ; set near the top of the script (behind the Includes) $oMyError = ObjEvent("AutoIt.Error","MyErrFunc") ; Initialize a COM error handler [...] Func MyErrFunc() Msgbox(0,"AutoItCOM Test","We intercepted a COM Error !" & @CRLF & @CRLF & _ "err.description is: " & @TAB & $oMyError.description & @CRLF & _ "err.windescription:" & @TAB & $oMyError.windescription & @CRLF & _ "err.number is: " & @TAB & hex($oMyError.number,8) & @CRLF & _ "err.lastdllerror is: " & @TAB & $oMyError.lastdllerror & @CRLF & _ "err.scriptline is: " & @TAB & $oMyError.scriptline & @CRLF & _ "err.source is: " & @TAB & $oMyError.source & @CRLF & _ "err.helpfile is: " & @TAB & $oMyError.helpfile & @CRLF & _ "err.helpcontext is: " & @TAB & $oMyError.helpcontext _ ) Endfunc "In the beginning the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move."
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now