J
Jamie Carper
The following code tells me if the searched text exists:
Dim FoundText as Boolean
With ActiveDocument.Range.Find
FoundText = .Execute("The text I am searching for")
End With
How can I extract the exact paragraph object where this text is found?
I do not wish to manipulate the text, merely goto the location as if this
were a bookmark.
Dim FoundText as Boolean
With ActiveDocument.Range.Find
FoundText = .Execute("The text I am searching for")
End With
How can I extract the exact paragraph object where this text is found?
I do not wish to manipulate the text, merely goto the location as if this
were a bookmark.