norgro
07-30-2012, 05:54 PM
How do I modify the following code to search for "ea instead of ea ?
Dim oRng As Word.Range
Set oRng = ActiveDocument.Range
With oRng.Find
.Text = "ea"
.Wrap = wdFindStop 'stops at the end of the document
While .Execute
…
Wend
End With
Dim oRng As Word.Range
Set oRng = ActiveDocument.Range
With oRng.Find
.Text = "ea"
.Wrap = wdFindStop 'stops at the end of the document
While .Execute
…
Wend
End With