Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Preventing the "[YourProgramName] has stopped working" dialog on unhandled exceptions

I have a WinForm application, with some dependencies on an external library that can on occasion cause an exception outside of the running threads context. As it stands now, this is completely OK behavior ( well, except of course the exception ) and we wired up AppDomain.CurrentDomain.UnhandledException to simply restart the program.

The only problem is, the [Your Program] has stopped working like the one below, appears: alt text http://telcontar.net/store/archive/CrashGallery/images/crash/vista/2007-05-30%20Microsoft%20Register%20Server.png

Is there a way to prevent this dialog from appearing at all, be it in the AppDomain unhandled exception handler or in a config setting, as no end users are going to be reading it and it just holds up resources until it is clicked.

like image 296
Serapth Avatar asked Apr 29 '10 14:04

Serapth


1 Answers

Avoid the WER dialog by preventing your UnhandledException event handler from exiting. Call Environment.Exit() to terminate your app.

like image 60
Hans Passant Avatar answered Sep 28 '22 06:09

Hans Passant