C2024-016-Annotations-Delete-Info-to-results-panel

This commit is contained in:
2024-07-29 12:52:29 -04:00
parent 3ec7c11797
commit 5ea9bcdd8b
2 changed files with 42 additions and 8 deletions

View File

@@ -61,6 +61,13 @@ namespace VEPROMS
{
return txtProcess;
}
// Make txtResults text box available to frmAnnotationsClean form.
internal TextBox GettxtResults()
{
return txtResults;
}
// NOTE: removed the Refresh ROs and Refresh Transitions and ROs options (now only Transitions can be refreshed)
// the Update ROs and Refresh ROs logic was merged together. The Update ROs will functionally do both
// also annotations will be placed on step elements that have RO changes
@@ -1722,7 +1729,7 @@ namespace VEPROMS
else
{
// Write progress status
txtProcess.AppendText("Deleting Annotations...");
txtProcess.AppendText("Deleting Annotations..." + Environment.NewLine);
// Create a list of procedures the user selected
List<ProcedureInfo> pil = new List<ProcedureInfo>();
@@ -1792,3 +1799,5 @@ namespace VEPROMS
}