View Single Post
  #6   Report Post  
Posted to microsoft.public.word.newusers
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Find and Replace dialog box

You are welcome

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



Island Girl wrote:
Thanks, Graham, for your always helpful reply.

"Graham Mayor" wrote:

You could use a macro which will reset the display, but not remove
old searches.

Sub ClearReplace()
With Selection.Find
.ClearFormatting
.Replacement.ClearFormatting
.Text = ""
.Replacement.Text = ""
.Forward = True
.MatchWildcards = False
.Wrap = wdFindContinue
.MatchWholeWord = False
.MatchSoundsLike = False
.MatchAllWordForms = False
.Format = False
.MatchCase = False
.Execute
End With
End Sub
http://www.gmayor.com/installing_macro.htm

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


Island Girl wrote:
I know that somewhere in this group you have told us how to clear
the Find and Replace dialog box, but I can't find it. Every time I
go into mine, the last search info is still in it.

Could you please tell me one more time? Thanks for all you do!!!