views:

32

answers:

2

Is there anyway to disable spell checking on a per document basis via VBA for MS Word?

+4  A: 

You can mark the current document as already spell-checked

ActiveDocument.SpellingChecked = True

or you can disable spell checking for a range of text:

ActiveDocument.Range.NoProofing = True

You can also simply disable the display of the red squiggles:

ActiveDocument.ShowSpellingErrors = False
0xA3
Excellent! I set SpellingChecked and GrammarChecked to False. Thanks.
GeneQ
+1  A: 

ActiveDocument.ShowSpellingErrors = False

Lunatik