Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Well....finally. Was that so hard?I did some asking around and I guess Quark is what puts in those <[lb]> characters.
Yes, you did.I did write a post for finding a word at a given position.
I posted an answer to that question.If I have a numbered position in a document, is there a way to get the word at that position and highlight it?
With Selection.Find
Do While (.Execute(Findtext:="-<[lb]>", _
Forward:=True) = True) = True
With Selection
.Delete
.Expand Unit:=wdWord
.Range.HighlightColorIndex = wdYellow
.Collapse Direction:=wdCollapseEnd
End With
Loop
End With