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.
[blue]For Each p In ActiveDocument.Paragraphs
p.Range.Select
Selection.Collapse wdCollapseEnd
Selection.MoveLeft wdCharacter
Selection.Bookmarks("\Line").Range.Font.Bold = True
Next[/blue]
For Each p In ActiveDocument.Paragraphs
Selection.Start = p.Range.End - 2
Selection.Bookmarks("\Line").Range.Font.Bold = True
Next