change find and replace default in Word 2000

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

My find and replace function in Word 2000 seems to default to "search down".
How can I change this to "search all"?

Thanks,

Brian
 
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
 
The default is always Search Down if you have text selected when you begin
the search. With no text selected, Word will start where you are and wrap to
the beginning.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top