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?
feedback
|
|
You need to handle the System.Windows.Forms.Application.ThreadException event for winforms. This article really helped me: http://bytes.com/forum/thread236199.html. | |||
|
feedback
|
|
Currently in my winforms app I have handlers for Most exceptions arrive via the | |||||
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. | ||||
|
feedback
|