Browse by Tags
All Tags » Exceptions » Runtime (RSS)
Sorry, but there are no more tags available to filter with.
-
|
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 );...
|