Changed logic to find ROs or XY Plots. VEPROMS_BGE/OI-34 has the text
<<<--Isolators-->>> which was being identified as an XY Plot and then as an RO. Add location information to the error log for RO Image problems Reduce duplicated error log messages for RO Value update
This commit is contained in:
@@ -1279,8 +1279,8 @@ namespace VEPROMS.CSLA.Library
|
||||
{
|
||||
if (roValue == null)
|
||||
{
|
||||
sel.Text = "RO Not Found";
|
||||
sel.Font.Color = LBWdColor.wdColorRed;
|
||||
//sel.Text = "RO Not Found";
|
||||
//sel.Font.Color = LBWdColor.wdColorRed;
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -1341,7 +1341,7 @@ namespace VEPROMS.CSLA.Library
|
||||
// - Dash
|
||||
// [!<> ]@ - 1 or more characters not including Less-Than, Greater-Than or Space
|
||||
// [>] - Greater-Than Character
|
||||
find.Text = "[<][<]*[>][>]";
|
||||
find.Text = "[<][<]G*[>][>]";
|
||||
//find.Wrap = LBWdFindWrap.wdFindStop;
|
||||
find.Wrap = LBWdFindWrap.wdFindContinue;
|
||||
find.MatchCase = false;
|
||||
@@ -1366,12 +1366,12 @@ namespace VEPROMS.CSLA.Library
|
||||
// If you do a search in MSWord, make sure wildcard box is checked and then press the
|
||||
// Special button to see the definitions of the various wildcards
|
||||
// [<] - Less-Than Character
|
||||
// [!<> ]@ - 1 or more characters not including Less-Than, Greater-Than or Space
|
||||
// [!<> -]@ - 1 or more characters not including Less-Than, Greater-Than, Dash or Space
|
||||
// - Dash
|
||||
// [!<>]@ - 1 or more characters not including Less-Than, Greater-Than.
|
||||
// a space be included as part of the accessory page id (Callaway, EOP Addendum 37)
|
||||
// [>] - Greater-Than Character
|
||||
find.Text = "[<][!<> ]@-[!<>]@[>]";
|
||||
find.Text = "[<][!<> -]@-[!<>]@[>]";
|
||||
find.Wrap = LBWdFindWrap.wdFindContinue;
|
||||
find.MatchCase = false;
|
||||
find.MatchWholeWord = false;
|
||||
|
Reference in New Issue
Block a user