Ejemplo n.º 1
0
 void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
 {
     TrySaveSpeakersDatabase();
     ExceptionCatchWindow w = new ExceptionCatchWindow(this, e.ExceptionObject as Exception);
     w.ShowDialog();
 }
Ejemplo n.º 2
0
        void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
        {

            ExceptionCatchWindow w = new ExceptionCatchWindow(this, e.ExceptionObject as Exception);
            w.ShowDialog();
        }