Added titles to message boxes used during the check of the RO.fst B2017-125
Add LoadingFigures to save status of loading the figures during Update RO Values B2017-125 Added checks to see if the RO Figures need loaded B2017-125 Added checks to see if the RO Figures need loaded and set the status during the loading figures part of updating RO values B2017-125 Make the progress bar text visible B2017-125 Added titles to message boxes used during the check of the RO.fst and make the progress bar text visible B2017-125
This commit is contained in:
@@ -107,6 +107,23 @@ namespace VEPROMS.CSLA.Library
|
||||
_Xp["ROUpdate", "LastCompleted"] = value; // save selected value
|
||||
}
|
||||
}
|
||||
// B2017-125 save status of loading RO Figues
|
||||
[Category("RO Update")]
|
||||
[DisplayName("Loading Figures")]
|
||||
[RefreshProperties(RefreshProperties.All)]
|
||||
[Description("Loading Figures Status")]
|
||||
public string ROUpdate_LoadingFigures
|
||||
{
|
||||
get
|
||||
{
|
||||
string s = _Xp["ROUpdate", "LoadingFigures"];// get the saved value
|
||||
return s;
|
||||
}
|
||||
set
|
||||
{
|
||||
_Xp["ROUpdate", "LoadingFigures"] = value; // save selected value
|
||||
}
|
||||
}
|
||||
#endregion // ROUpdate
|
||||
#region ToString
|
||||
public override string ToString()
|
||||
|
Reference in New Issue
Block a user