diff --git a/PROMS/VEPROMS User Interface/frmBatchRefresh.cs b/PROMS/VEPROMS User Interface/frmBatchRefresh.cs index 23fe4edf..41911324 100644 --- a/PROMS/VEPROMS User Interface/frmBatchRefresh.cs +++ b/PROMS/VEPROMS User Interface/frmBatchRefresh.cs @@ -274,7 +274,7 @@ namespace VEPROMS } } this.Cursor = Cursors.Default; - } + } private void RefreshTransitions() { this.Cursor = Cursors.WaitCursor; @@ -381,6 +381,10 @@ namespace VEPROMS txtResults.AppendText(Environment.NewLine); txtResults.AppendText("It is recommended you contact Volian to assist in resolving this condition"); } + else + { + txtResults.Text = "No Disconnected Records Found";// B2017-108 Always output results even if there isn't any + } DateTime pEnd = DateTime.Now; txtProcess.AppendText(pEnd.ToString("MM/dd/yyyy @ HH:mm")); Application.DoEvents(); @@ -449,6 +453,11 @@ namespace VEPROMS txtResults.AppendText(Environment.NewLine); txtResults.AppendText(Environment.NewLine); } + else + { + txtResults.Text = "No Unused Records Found";// B2017-108 Always output results even if there isn't any + } + DateTime pEnd = DateTime.Now; txtProcess.AppendText(pEnd.ToString("MM/dd/yyyy @ HH:mm")); Application.DoEvents(); @@ -524,6 +533,10 @@ namespace VEPROMS txtResults.AppendText(Environment.NewLine); txtResults.AppendText(Environment.NewLine); } + else + { + txtResults.Text = "No unused RO Associations Found";// B2017-108 Always output results even if there isn't any + } DateTime pEnd = DateTime.Now; txtProcess.AppendText(pEnd.ToString("MM/dd/yyyy @ HH:mm")); Application.DoEvents(); @@ -596,6 +609,10 @@ namespace VEPROMS txtResults.AppendText(Environment.NewLine); } } + else + { + txtResults.Text = "No Non-Editable Items Found";// B2017-108 Always output results even if there isn't any + } DateTime pEnd = DateTime.Now; txtProcess.AppendText(pEnd.ToString("MM/dd/yyyy @ HH:mm")); Application.DoEvents(); @@ -981,4 +998,4 @@ namespace VEPROMS } } public delegate void AdminToolExecute(); -} \ No newline at end of file +}