View Single Post
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Greg
 
Posts: n/a
Default change find and replace default in Word 2000

Try running this macro:
Sub ResetFRParameters()
With Selection.Find
.ClearFormatting
.Replacement.ClearFormatting
.Text = ""
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
.Execute
End With
End Sub