D
davidh
Greetings MS WORD folk,
when I record a new macro to remove hidden text in WORD 2003 it does
not work.
text of macro as created by the record macro is as follows
============
Sub Macro1()
'
' Macro1 Macro
' Macro recorded 9/27/2007 by user
'
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = ""
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
End Sub
=========
any and all advice greatly appreciated.
many thanks Davidh
when I record a new macro to remove hidden text in WORD 2003 it does
not work.
text of macro as created by the record macro is as follows
============
Sub Macro1()
'
' Macro1 Macro
' Macro recorded 9/27/2007 by user
'
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = ""
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
End Sub
=========
any and all advice greatly appreciated.
many thanks Davidh