From 2e00c94d3485c19815baeea1b5655496ef648ac2 Mon Sep 17 00:00:00 2001 From: Paul Larsen Date: Mon, 9 Sep 2024 13:47:44 -0400 Subject: [PATCH] C2021-040-Change-dialog-box-when-canceling-import-procedure --- PROMS/VEPROMS User Interface/dlgExportImport.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PROMS/VEPROMS User Interface/dlgExportImport.cs b/PROMS/VEPROMS User Interface/dlgExportImport.cs index 955b5c78..5f5e664e 100644 --- a/PROMS/VEPROMS User Interface/dlgExportImport.cs +++ b/PROMS/VEPROMS User Interface/dlgExportImport.cs @@ -427,7 +427,7 @@ namespace VEPROMS } 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(); } }