Pages

Wednesday, December 23, 2009

Word VBA – Avoid “There are too many spelling or grammatical errors in Document ...” message

When you are automating something in Word using VBA, the below message can be a nemesis. This message will wait for user input whereas you would have though the program will continue without user intervention.








To stop this message set the Grammar checked to be true



Sub Set_Spell_Grammar()



ActiveDocument.GrammarChecked = True

ActiveDocument.SpellingChecked = True

End Sub

No comments:

Post a Comment