Ejemplo n.º 1
0
        static void Application_ThreadException(object sender, ThreadExceptionEventArgs e)
        {
            CrashReporter ErrorDlg = new CrashReporter(e.Exception);

            ErrorDlg.ShowDialog();
        }
Ejemplo n.º 2
0
        static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
        {
            CrashReporter ErrorDlg = new CrashReporter((Exception)e.ExceptionObject);

            ErrorDlg.ShowDialog();
        }