From a28735c86824dd24bf96c03cbd00fa75b5094e08 Mon Sep 17 00:00:00 2001 From: Kathy Date: Thu, 5 Sep 2013 15:46:31 +0000 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20restrict=20find=20text=20in=20F?= =?UTF-8?q?inding=20RO=E2=80=99s=20in=20word=20documents=20to=20not=20allo?= =?UTF-8?q?w=20a=20space?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PROMS/VEPROMS.CSLA.Library/Extension/DocumentExt.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/PROMS/VEPROMS.CSLA.Library/Extension/DocumentExt.cs b/PROMS/VEPROMS.CSLA.Library/Extension/DocumentExt.cs index f54723e0..2ffea256 100644 --- a/PROMS/VEPROMS.CSLA.Library/Extension/DocumentExt.cs +++ b/PROMS/VEPROMS.CSLA.Library/Extension/DocumentExt.cs @@ -1291,9 +1291,10 @@ namespace VEPROMS.CSLA.Library // [<] - Less-Than Character // [!<> ]@ - 1 or more characters not including Less-Than, Greater-Than or Space // - Dash - // [!<> ]@ - 1 or more characters not including Less-Than, Greater-Than or Space + // [!<>]@ - 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;