Use 'With AutoCorrect' to set/unset the option.
For example:
You need to place this in the ThisDocument module in the VBE.Sub Private Sub Document_Open() With AutoCorrect .CorrectInitialCaps = False .CorrectSentenceCaps = True .CorrectDays = True .CorrectCapsLock = True .ReplaceText = True .ReplaceTextFromSpellingChecker = True .CorrectKeyboardSetting = False End With End Sub
Or rename as AutoExec in Normal for it to fire each time Word opens.
HTH,
Marcster.