up vote 10 down vote favorite
2
share [g+] share [fb]

When working on ASP.NET 1.1 projects I always used the Global.asax to catch all errors. I'm looking for a similar way to catch all exceptions in a WinForms user control which ends up being a hosted IE control. What is the proper way to go about doing something like this?

link|improve this question

75% accept rate
Also have a look at my question for some of the pitfalls (links to a couple of coding horror blog entries). – Ray Aug 5 '08 at 22:17
feedback

3 Answers

up vote 9 down vote accepted

You need to handle the System.Windows.Forms.Application.ThreadException event for winforms. This article really helped me: http://bytes.com/forum/thread236199.html.

link|improve this answer
feedback

Currently in my winforms app I have handlers for Application.ThreadException, as above, but also AppDomain.CurrentDomain.UnhandledException

Most exceptions arrive via the ThreadException handler, but the AppDomain one has also caught a few in my experience

link|improve this answer
2  
Sample code from MSDN showing how to catch both types of unhandled exceptions: msdn – Jan Hettich Jul 14 '11 at 0:43
feedback

If you're using VB.NET, you can tap into the very convenient ApplicationEvents.vb. This file comes for free with a VB.NET WinForms project and contains a method for handling unhandled exceptions.

To get to this nifty file, it's "Project Properties >> Application >> Application Events"

If you're not using VB.NET, then yeah, it's handling Application.ThreadException.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.