B2024-053_Submitted_for_Admin_Tools-Delete #372

Merged
jjenko merged 1 commits from B2024-053_Submitted_for_Admin_Tools-Delete into Development 2024-07-31 14:41:13 -04:00

View File

@ -104,6 +104,8 @@ namespace VEPROMS
// Process used to cleanup annotations "(Proceed?" button) // Process used to cleanup annotations "(Proceed?" button)
private void button1_Click(object sender, EventArgs e) private void button1_Click(object sender, EventArgs e)
{
if (lbAnnotationTypes.SelectedIndex > -1)
{ {
TextBox frm2 = mainForm.GettxtProcess(); TextBox frm2 = mainForm.GettxtProcess();
@ -146,6 +148,7 @@ namespace VEPROMS
} }
} }
frm3.AppendText(Environment.NewLine + Environment.NewLine + "Total Annotations Deleted: " + totalDeleteCnt + Environment.NewLine + Environment.NewLine); frm3.AppendText(Environment.NewLine + Environment.NewLine + "Total Annotations Deleted: " + totalDeleteCnt + Environment.NewLine + Environment.NewLine);
}
} }