コード例 #1
0
 static void Application_ThreadException(object sender, ThreadExceptionEventArgs e)
 {
     Little_Registry_Cleaner.CrashReporter ErrorDlg = new Little_Registry_Cleaner.CrashReporter(e.Exception);
     ErrorDlg.ShowDialog();
 }
コード例 #2
0
 static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
 {
     Little_Registry_Cleaner.CrashReporter ErrorDlg = new Little_Registry_Cleaner.CrashReporter((Exception)e.ExceptionObject);
     ErrorDlg.ShowDialog();
 }