M
Martin Lapierre
How can I remove the default exception handler handler?
When adding a custom handler, I can't get rid of the VS.NET unhandled
exception dialog.
Ex:
AppDomain currentDomain = AppDomain.CurrentDomain;
currentDomain.UnhandledException += new
UnhandledExceptionEventHandler(MyHandler);
MyHandler gets called AFTER the default VS.NET unhandled exception handler
(even in Release versions).
When adding a custom handler, I can't get rid of the VS.NET unhandled
exception dialog.
Ex:
AppDomain currentDomain = AppDomain.CurrentDomain;
currentDomain.UnhandledException += new
UnhandledExceptionEventHandler(MyHandler);
MyHandler gets called AFTER the default VS.NET unhandled exception handler
(even in Release versions).