static void Application_ThreadException(object sender, ThreadExceptionEventArgs e) { CrashReporter ErrorDlg = new CrashReporter(e.Exception); ErrorDlg.ShowDialog(); }
static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) { CrashReporter ErrorDlg = new CrashReporter((Exception)e.ExceptionObject); ErrorDlg.ShowDialog(); }