Hello all
Is there a way to set auto correct options when word launches. We want to shut off some options without visiting everyones machine.
Thanks in advance
Russ![]()
Hello all
Is there a way to set auto correct options when word launches. We want to shut off some options without visiting everyones machine.
Thanks in advance
Russ![]()
Russ![]()
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.
Last edited by Aussiebear; 06-16-2025 at 10:42 PM.
Fabulous, I will give it a tryl.
Thanks
Russ
Last edited by Aussiebear; 06-16-2025 at 10:43 PM.
Russ![]()
Thanks again it worked great. One more question. I need to shut off "Ordinals" in the "autoformat as you type" tab as well, but can't find the command.
Russ![]()
I am going to mark this one solved. I found what I was looking for. Thanks for the help. Here is the code for the last piece.
With Options .UpdateLinksAtPrint = True .PrintDrawingObjects = True .AutoFormatAsYouTypeApplyHeadings = False .AutoFormatAsYouTypeApplyBorders = False .AutoFormatAsYouTypeApplyBulletedLists = False .AutoFormatAsYouTypeApplyNumberedLists = False .AutoFormatAsYouTypeApplyTables = False .AutoFormatAsYouTypeReplaceQuotes = True .AutoFormatAsYouTypeReplaceSymbols = True .AutoFormatAsYouTypeReplaceOrdinals = False .AutoFormatAsYouTypeReplacePlainTextEmphasis = True .AutoFormatAsYouTypeFormatListItemBeginning = False .AutoFormatAsYouTypeDefineStyles = False .AutoFormatApplyHeadings = False .AutoFormatApplyLists = False .AutoFormatApplyBulletedLists = False .AutoFormatApplyOtherParas = False .AutoFormatReplaceQuotes = True .AutoFormatReplaceSymbols = True .AutoFormatReplaceOrdinals = False .AutoFormatReplacePlainTextEmphasis = False .AutoFormatPreserveStyles = True .AutoFormatPlainTextWordMail = True End With
Last edited by Aussiebear; 06-16-2025 at 10:44 PM.
Russ![]()