PDA

View Full Version : Solved: Spellcheck Uppercase words



RonNCmale
03-07-2013, 03:02 AM
I know I can go into the options and uncheck the Ignore words in uppercase but is there a way to do this automatically using VBA if the user has not unchecked this? I'm using this vba in a module to spell check form fields in a protected document: http://word.mvps.org/faqs/macrosvba/SpellcheckProtectDoc.htm

macropod
03-07-2013, 03:40 AM
Try:
Options.IgnoreUppercase = False

Note: You should save the current state before setting it, then restore it afterwards.

RonNCmale
03-07-2013, 05:44 AM
As always, Thanks for your help, Macropod
This did work.