When a deleted RO is found in an MSWord section <SP-C.123> for example, the RO had been replaced with the text RO Not Found. If there were mutiple ROs the specific one with the issue could not be found. Now the token will be replaced with RO (SP-C.123) Not Found. This will make it easier to fix problems when they occur.

This commit is contained in:
Rich 2017-03-29 18:05:12 +00:00
parent 75ec77fd49
commit 4d5dc34210

View File

@ -1386,7 +1386,8 @@ namespace VEPROMS.CSLA.Library
{
if (roValue == null)
{
sel.Text = "RO Not Found";
string orgtext = sel.Text;
sel.Text = string.Format("RO ({0}) Not Found",orgtext.Replace("<","").Replace(">",""));
sel.Font.Color = LBWdColor.wdColorRed;
}
else