C2026-008 - Re-Architect RO.FST to include RO Modification date/time and use those when updating ROs from the RO.FST

Update ProgressBar & fix Already Checked out popup multiple times
This commit is contained in:
2026-05-11 14:42:48 -04:00
parent 45e78ef184
commit c5f1c3a340
5 changed files with 36 additions and 31 deletions
@@ -3578,7 +3578,7 @@ namespace Volian.Controls.Library
}
Cursor = Cursors.Default;
FinalProgressBarMessage = "ROs values updated";
}
}
private System.IO.StreamWriter swROUpdate;
// write the RO reference changes to a text file, include the old/new text, location, and the itemid of the step element
void ContentInfo_StaticContentInfoChange(object sender, StaticContentInfoEventArgs args)
@@ -3618,10 +3618,11 @@ namespace Volian.Controls.Library
set
{
if (ProgressBar == null) return;
ProgressBar.Value = 100;
ProgressBar.Maximum = 100;
ProgressBar.Text = value;
Application.DoEvents();
ProgressBar.Text = value;
ProgressBar.Maximum = 100;
ProgressBar.Value = 100;
Application.DoEvents();
}
}