Getting windows error reporting dialog

Posted by Michael on Stack Overflow See other posts from Stack Overflow or by Michael
Published on 2010-04-13T14:10:27Z Indexed on 2010/04/13 14:13 UTC
Read the original article Hit count: 328

Filed under:
|
|

In my C# app, even I handle exception :

Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);

and then in handler showing dialog box and doing Application.Exit still getting windows error reporting dialog with Send, Don't Dend...

How to prevent windows error reporting dialog from popping up?

© Stack Overflow or respective owner

Related posts about c#

Related posts about unhandled