Added DoUpdateRO flag for use in the new Update RO logic

Better feedback when updating RO values, also save list of updated ROs in text file in Documents\VEPROMS
This commit is contained in:
2017-06-20 16:28:45 +00:00
parent 16133ccab1
commit d20ec450ce
3 changed files with 39 additions and 7 deletions

View File

@@ -17,6 +17,12 @@ namespace Volian.Base.Library
// <add key ="OperatingMode" value ="Debug"|"Demo"|"Production"/>
// For DataLoader, this is set via the Debug checkbox on the form.
private static bool WasLoaded = false;
private static bool _DoUpdateRO = true;
public static bool DoUpdateRO
{
get { return VlnSettings._DoUpdateRO; }
set { VlnSettings._DoUpdateRO = value; }
}
private static bool _DebugPagination = false;
public static bool DebugPagination
{