C2021-040-Change-dialog-box-when-canceling-import-procedure

This commit is contained in:
Paul Larsen 2024-09-09 13:47:44 -04:00
parent f1506b9aee
commit 2e00c94d34

View File

@ -427,7 +427,7 @@ namespace VEPROMS
} }
if (canceledPressed) if (canceledPressed)
{ {
MessageBox.Show(string.Format("Canceling the import of:\n\n{0}", txtImport.Text.Substring(txtImport.Text.LastIndexOf("\\") + 1)), "Import", MessageBoxButtons.OK, MessageBoxIcon.Information); MessageBox.Show(string.Format("Canceling the import of:\n\n{0}", txtImport.Text.Substring(txtImport.Text.LastIndexOf("\\") + 1)), "Cancelling Import", MessageBoxButtons.OK, MessageBoxIcon.Information);
btnCloseImport.PerformClick(); btnCloseImport.PerformClick();
} }
} }