예제 #1
0
파일: Setup.cs 프로젝트: m4mm0n/OpenFTP
 private static void CurrentDomain_FirstChanceException(object sender, System.Runtime.ExceptionServices.FirstChanceExceptionEventArgs e)
 {
     using (var f = new frmException(e.Exception))
     {
         f.ShowDialog();
     }
 }
예제 #2
0
 private void button3_Click(object sender, EventArgs e)
 {
     using (var fr = new frmException(exception.InnerException, true))
         fr.ShowDialog();
 }