MadExcept launches an attempt at the end

I use MadExcept to debug my applications. This is an excellent structure, although when an exception occurs when trying to permanently block, it still displays that ugly box, and the user thinks the application crashed.

How can i remove this? Is there any way?

+3
source share
1 answer

It looks like it works as designed. The try / finally block does not use exceptions; it ensures proper cleaning even if an exception occurs.

If you want to handle an exception, you need to use the try / except block instead.

+14
source

All Articles