Browse by Tags
All Tags » Exceptions (RSS)
-
|
You can handle the Application.ThreadException event from the System.Windows.Forms namespace. using System.Threading; [STAThread] public static void Main() { Application.ThreadException += new ThreadExceptionEventHandler( UnhandledExceptionCatcher );...
|