Jump to content

Avoid "AutoIt Error" message box in unknown errors


Go to solution Solved by trancexx,

Recommended Posts

Posted

Hey there :bye:

some times in a big script like mine, unpredictable errors come out and crashes it, is there anyway to handle any error in the script with a message box or event instead of viewing an "AutoIt error" and closing the application?

I hope so, thank you. :ermm:

[font="'trebuchet ms', helvetica, sans-serif;"]Please mark the answer of your question if you found it.[/font]

Posted

One of the typical errors that crashes a script is caused by using an invalid index with arrays:

Global $aArray[3], $i = 99
MsgBox(0, "Error", $aArray[$i])

How would you "handle" such an error?

The only way I see to avoid the error MsgBox is to use the command line switch /ErrorStdOut.

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted

Thank you, sometimes I have errors from COM objects for example, or even as you said because of an error in arrays methods. I thought that there might be a way to avoid the error message, I don't care if my app crashed, but I don't want to show that my app is created with autoit.

[font="'trebuchet ms', helvetica, sans-serif;"]Please mark the answer of your question if you found it.[/font]

Posted

To handle COM errors you can add a COM error handler to your scripts. See ObjEvent in the help file.

After 3.3.8.1 a COM error no longer crashes the script but sets @error. So you should check for @error <> 0 anyway.

Use the switch as I suggested and you won't see the MsgBox pop up. If you want to display a user defined message I can point you to code I once got from trancexx to handle this issue.

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted
  Quote
To handle COM errors you can add a COM error handler to your scripts. See ObjEvent in the help file.

 

Great, thank you.

  Quote
After 3.3.8.1 a COM error no longer crashes the script but sets @error. So you should check for @error <> 0 anyway.

 

It's much greater, thank you!

  Quote
Use the switch as I suggested and you won't see the MsgBox pop up. If you want to display a user defined message I can point you to code I once got from trancexx to handle this issue.

 

 

ah yes please, if you have some time for that I would be thankful.

Godspeed.

[font="'trebuchet ms', helvetica, sans-serif;"]Please mark the answer of your question if you found it.[/font]

Posted
  Quote
; Cause error that would say some AutoIt shit happened, but now it wouldn't say "AutoIt"

 

^_^  that's it. thank you.

[font="'trebuchet ms', helvetica, sans-serif;"]Please mark the answer of your question if you found it.[/font]

Posted
This is fabulous
I think this snippet will often quoted.
 
Thanks
trancexx

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted (edited)

I noticed the important thing.

This script does not work with:
AutoIt3Wrapper v.2.1.0.33

after the upgrade to
AutoIt3Wrapper v.2.1.2.26
script starts to work properly.

EDIT:

I had a situation on their PC with a standard installation
AuotIt 3.3.8.1 + SciTE4AutoIt3_2013-04-06.exe

Edited by mlipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

  • 4 weeks later...
Posted
  On 8/28/2013 at 11:55 AM, trancexx said:
AddHookApi("user32.dll", "MessageBoxW", "Intercept_MessageBoxW", "int", "hwnd;wstr;wstr;uint")

 

I wonder how I can, after running, turn off this feature, without end of the entire script.

ps.

Please look at the sample application, using this functionality.

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

  On 9/24/2013 at 11:55 AM, mlipok said:

I wonder how I can, after running, turn off this feature, without end of the entire script.

 

ps.

Please look at the sample application, using this functionality.

To turn it off for whatever reason, you do something like this:

Global $pOriginalFunc = AddHookApi("user32.dll", "MessageBoxW", "Intercept_MessageBoxW", "int", "hwnd;wstr;wstr;uint")

;... The rest of the code here...
;...

; Back to original function:
AddHookApi("user32.dll", "MessageBoxW", $pOriginalFunc)

... After that it's like it was never hooked.

♡♡♡

.

eMyvnE

Posted

thanks

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

  • 1 month later...
Posted

Trancexx solution working great when we dont use any compressor/packer (UPX/others) for our compiled scripts, but doesn't work when we use them.

Try to compile your scripts together with UPX and you will see, it will display text "AutoIT" when error.

Compressor/packer (together with obfuscator) is a good idea to make our scripts harder to decompiled.

According to trancexx, this solution will not work if the compressor/packer crypte the PE Import directory.

Any ideas from you guys? :)

Posted
  On 11/23/2013 at 2:25 AM, michaelslamet said:

 

Any ideas from you guys? :)

 

Did you try to use this:

#Obfuscator_Ignore_Funcs=AddHookApi
#Obfuscator_Ignore_Funcs=ImageDirectoryEntryToData
#Obfuscator_Ignore_Funcs=Intercept_MessageBoxW
#Obfuscator_Ignore_Funcs=VirtualProtect

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted (edited)

  On 11/23/2013 at 2:25 AM, michaelslamet said:

Trancexx solution working great when we dont use any compressor/packer (UPX/others) for our compiled scripts, but doesn't work when we use them.

Try to compile your scripts together with UPX and you will see, it will display text "AutoIT" when error.

Compressor/packer (together with obfuscator) is a good idea to make our scripts harder to decompiled.

According to trancexx, this solution will not work if the compressor/packer crypte the PE Import directory.

Any ideas from you guys? :)

So it makes it not perfect base.

Some time ago, I found this solution:

'?do=embed' frameborder='0' data-embedContent>>

This solution should be perfect.

But I found a bug postpage-2#entry1126919' title="OnAutoItErrorRegister - Handle AutoIt critical errors: post #27"> #27

I solved this bug. After you download the UDF, Make My solution for the bug.

In addition, I gave a very good idea. I would love if someone will make the idea! (Read page-2#entry1126919' title="OnAutoItErrorRegister - Handle AutoIt critical errors: post #27">#27 for details)

Edited by Guest
Posted

  On 11/23/2013 at 2:37 PM, PincoPanco said:

maybe >this?

thanks but it only works with the beta version of autoit .

It should work also with the stable autoit version?
 
Please help me.

I want to use it in the

stable version!
Posted

in the header of the UDF i read:
; AutoIt Version.: 3.3.8.1++
where have you read that it only works with beta?

 

image.jpeg.9f1a974c98e9f77d824b358729b089b0.jpeg Chimp

small minds discuss people average minds discuss events great minds discuss ideas.... and use AutoIt....

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...