コード例 #1
0
ファイル: FormBase.cs プロジェクト: stuarthillary/Samples
 public void ShowFinishDialog(string message, string fullDocumentPath)
 {
     try
     {
         FormFinish dialog = new FormFinish(message, fullDocumentPath);
         dialog.ShowDialog(this);
     }
     catch (Exception exception)
     {
         FormError.Show(this, exception);
     }
 }
コード例 #2
0
ファイル: FormBase.cs プロジェクト: netintellect/NetOffice
 public void ShowFinishDialog(string message, string fullDocumentPath)
 {
     try
     {
         FormFinish dialog = new FormFinish(message, fullDocumentPath);
         dialog.ShowDialog(this);
     }
     catch(Exception exception)
     {
         FormError.Show(this, exception);           
     }
 }