B
B@TDA
In MS Word 2007, I'm trying to create a macro to avoid having to go through
the steps "Word options > Proofing >Recheck document ... " every time I need
to clear the old spell-check files and recheck spelling in a document. My
macro looks like this:
Sub SpellRecheck()
'
' SpellRecheck Macro
'
'
Application.ResetIgnoreAll
ActiveDocument.SpellingChecked = False
ActiveDocument.GrammarChecked = False
End Sub
It does not work. Any idea why, and what I can do to make it work? Other
macros I've written work fine. Thanks for any advice!
the steps "Word options > Proofing >Recheck document ... " every time I need
to clear the old spell-check files and recheck spelling in a document. My
macro looks like this:
Sub SpellRecheck()
'
' SpellRecheck Macro
'
'
Application.ResetIgnoreAll
ActiveDocument.SpellingChecked = False
ActiveDocument.GrammarChecked = False
End Sub
It does not work. Any idea why, and what I can do to make it work? Other
macros I've written work fine. Thanks for any advice!