From bed3f0477f9df5a72cb76743955b1c52b5e11400 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 22 Oct 2020 14:14:56 +0000 Subject: [PATCH] =?UTF-8?q?C2020-042=20When=20an=20Export=20is=20finished?= =?UTF-8?q?=20the=20message=20box=20will=20be=20titled=20=E2=80=9CExport?= =?UTF-8?q?=20Completed=E2=80=9D.=20=20When=20an=20Import=20is=20finished?= =?UTF-8?q?=20the=20message=20box=20will=20be=20titled=20=E2=80=9CImport?= =?UTF-8?q?=20Completed=E2=80=9D.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PROMS/VEPROMS User Interface/dlgExportImport.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PROMS/VEPROMS User Interface/dlgExportImport.cs b/PROMS/VEPROMS User Interface/dlgExportImport.cs index 675acdb7..8eee4893 100644 --- a/PROMS/VEPROMS User Interface/dlgExportImport.cs +++ b/PROMS/VEPROMS User Interface/dlgExportImport.cs @@ -245,7 +245,7 @@ namespace VEPROMS } else msg = "Could not complete export"; - MessageBox.Show(msg, "Export", MessageBoxButtons.OK, MessageBoxIcon.Information); + MessageBox.Show(msg, "Export Completed", MessageBoxButtons.OK, MessageBoxIcon.Information); // C2020-042 changed mesage box title btnCloseExport.Enabled = true; } @@ -379,8 +379,8 @@ namespace VEPROMS msg += "\n\nYou had imported an Approved Version of a procedure.\n\nAll Transition and Referenced Object values are text."; // B2017-076 Approved import file does not have ROs nor Transition } // B2016-225 added more information to the finish import message to tell the user when ROs or Transitions are converted to text. - MessageBox.Show(msg, "Import", MessageBoxButtons.OK, MessageBoxIcon.Information); - //MessageBox.Show(string.Format("Finished Importing:\n\n{0}", txtImport.Text.Substring(txtImport.Text.LastIndexOf("\\") + 1)), "Import", MessageBoxButtons.OK, MessageBoxIcon.Information); + MessageBox.Show(msg, "Import Completed", MessageBoxButtons.OK, MessageBoxIcon.Information); // C2020-042 changed mesage box title + //MessageBox.Show(string.Format("Finished Importing:\n\n{0}", txtImport.Text.Substring(txtImport.Text.LastIndexOf("\\") + 1)), "Import", MessageBoxButtons.OK, MessageBoxIcon.Information); } if (canceledPressed) {