P
Philip Brown
Hello,
Trying to use VBA to Find a given font and replace it
with another font, but cannot figure out how to specify
this.
Current code reads:
With Selection.Find
.Text = "^?"
.Replacement.Text = "^&"
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = True
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute
Thanks for any help!
Philip Brown
Trying to use VBA to Find a given font and replace it
with another font, but cannot figure out how to specify
this.
Current code reads:
With Selection.Find
.Text = "^?"
.Replacement.Text = "^&"
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = True
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute
Thanks for any help!
Philip Brown