Beispiel #1
0
 public void ShowFinishDialog(string message, string fullDocumentPath)
 {
     try
     {
         FormFinish dialog = new FormFinish(message, fullDocumentPath);
         dialog.ShowDialog(this);
     }
     catch (Exception exception)
     {
         FormError.Show(this, exception);
     }
 }
Beispiel #2
0
 public void ShowFinishDialog(string message, string fullDocumentPath)
 {
     try
     {
         FormFinish dialog = new FormFinish(message, fullDocumentPath);
         dialog.ShowDialog(this);
     }
     catch(Exception exception)
     {
         FormError.Show(this, exception);           
     }
 }