how can I find all of the the "XX" in my document and have them all turn blue? this is what I am using:
With Selection.Find
.Text = "XX"
.MatchCase = True
End With
Do Until Selection.Find.Execute = False
Selection.Find.Execute
Selection.Font.Bold = wdToggle
Selection.Font.ColorIndex = wdBlue
Selection.Find.Execute
Loop
but it doesn't find all of them. Can anyone help?
Thanks in advance
eric "The greatest risk, is not taking one."
With Selection.Find
.Text = "XX"
.MatchCase = True
End With
Do Until Selection.Find.Execute = False
Selection.Find.Execute
Selection.Font.Bold = wdToggle
Selection.Font.ColorIndex = wdBlue
Selection.Find.Execute
Loop
but it doesn't find all of them. Can anyone help?
Thanks in advance
eric "The greatest risk, is not taking one."