H
Hamilton
I'm trying to start off the first command to change all single angle
brackets found, to double angle brackets, but debug is stopping at the
first line. Can someone tell me what I did wrong?
With Selection.Find
.Text = "<^&>"
.Replacement.Text = "<<^&>>"
.Forward = True
.Wrap = wdFindContinue
.Format = 0
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
Using Word 2000 and Microsoft Visual Basic
brackets found, to double angle brackets, but debug is stopping at the
first line. Can someone tell me what I did wrong?
With Selection.Find
.Text = "<^&>"
.Replacement.Text = "<<^&>>"
.Forward = True
.Wrap = wdFindContinue
.Format = 0
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
Using Word 2000 and Microsoft Visual Basic