Is there anyway to disable spell checking on a per document basis via VBA for MS Word?
views:
32answers:
2
+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
2010-09-29 13:43:26
Excellent! I set SpellingChecked and GrammarChecked to False. Thanks.
GeneQ
2010-09-29 13:49:24