Ejemplo n.º 1
0
        private void ShowDatabaseErrorDialog(BackupDatabaseReadException ex)
        {
            DatabaseErrorDialog errorDialog = new DatabaseErrorDialog(ex);

            errorDialog.Owner = this;
            errorDialog.ShowDialog();
            if (errorDialog.DialogResult == true)
            {
                ShowSendFeedbackDialog();
            }
        }
Ejemplo n.º 2
0
 private void ShowDatabaseErrorDialog(BackupDatabaseReadException ex)
 {
     DatabaseErrorDialog errorDialog = new DatabaseErrorDialog(ex);
     errorDialog.Owner = this;
     errorDialog.ShowDialog();
     if (errorDialog.DialogResult == true)
     {
         ShowSendFeedbackDialog();
     }
 }