I don't know how to watch the bookmark contents on the screen. I have typed the following:
dim lbookmark as string
If ActiveDocument.Bookmarks.Exists("BMK_Phone1") = True Then
ActiveDocument.Bookmarks("BMK_Phone1").Range.Text = "Pepe"
End If
lbookmark =...
I want to insert bookmarks in a several places of a Word document. What I want to do is a program in VBA that asks you the bookmark's name you want to insert in the document that is already done. My problem is I don't know how to move the cursor of the document (not the mouse cursor) once the...