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.
{ line01 \* MERGEFORMAT }
{ line02 \* MERGEFORMAT }
With Selection.Find
.ClearFormatting
Do While .Execute(FindText:="^d", Forward:=True, _
Format:=True) = True
'Selection.Find.Execute
Selection.MoveRight Unit:=wdCharacter, Count:=1
Selection.MoveLeft Unit:=wdCharacter, Count:=1
Selection.TypeText Text:="\* MERGEFORMAT "
Selection.MoveRight Unit:=wdCharacter, Count:=1
Loop
End With