Results 1 to 5 of 5

Thread: Set Auto Correct options

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #2
    VBAX Mentor Marcster's Avatar
    Joined
    Jun 2005
    Posts
    434
    Location
    Use 'With AutoCorrect' to set/unset the option.
    For example:
    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
    You need to place this in the ThisDocument module in the VBE.
    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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •