C
cyberdude
Hi,
Somebody gave me the following code to search words in red in a
document:
With Selection.Find
.ClearFormatting
.Forward = True
.Wrap = wdFindStop
.Format = True
.Font.Color = wdColorRed
End With
While Selection.Find.Execute
MsgBox (Selection.Text)
Wend
May I know how to force it to seach from the beginning of a document?
Thanks.
Mike
Somebody gave me the following code to search words in red in a
document:
With Selection.Find
.ClearFormatting
.Forward = True
.Wrap = wdFindStop
.Format = True
.Font.Color = wdColorRed
End With
While Selection.Find.Execute
MsgBox (Selection.Text)
Wend
May I know how to force it to seach from the beginning of a document?
Thanks.
Mike