Share via

Toggle spell checker

Anonymous
2013-02-14T15:09:22+00:00

At one time, I had a command on the quick access toolbar that would toggle the spell checker on/off. My computer had to be re-imaged, so I lost it. When turned on, it would place red lines under the misspelled words. WHen off, the red lines would go away. This prevented me from having to go into options and turn it off and on.

Does anyone know how I can get it back on my toolbar

Microsoft 365 and Office | Word | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Anonymous
2013-02-14T17:36:47+00:00

The following macro will do the job

Sub ToggleSpellingErrors()

Dim oRng As Range

ActiveDocument.ShowSpellingErrors = Not ActiveDocument.ShowSpellingErrors

Set oRng = Selection.Range

oRng.Collapse wdCollapseEnd

oRng.Text = Chr(32)

oRng.Text = ""

End Sub

I'm sure this would work but I was able to do it before without a macro. I just went to options / customize ribbon  and under choose from commands I added it to a custom tab I had created. Problem is I can't remember the name of the command.

I found it, Hide Spelling Errors. Click once, red wavy lines show, click again, they disappear.

I prefer this to automatic spell checking

Was this answer helpful?

0 comments No comments

3 additional answers

Sort by: Most helpful
  1. Anonymous
    2013-02-15T06:29:20+00:00

    You are correct. That will work also - I had overlooked the fact that this was available as a built-in command. The macro simply duplicates the built-in function :(

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2013-02-14T16:03:57+00:00

    The following macro will do the job

    Sub ToggleSpellingErrors()

    Dim oRng As Range

    ActiveDocument.ShowSpellingErrors = Not ActiveDocument.ShowSpellingErrors

    Set oRng = Selection.Range

    oRng.Collapse wdCollapseEnd

    oRng.Text = Chr(32)

    oRng.Text = ""

    End Sub

    I'm sure this would work but I was able to do it before without a macro. I just went to options / customize ribbon  and under choose from commands I added it to a custom tab I had created. Problem is I can't remember the name of the command.

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2013-02-14T15:51:36+00:00

    The following macro will do the job

    Sub ToggleSpellingErrors()

    Dim oRng As Range

    ActiveDocument.ShowSpellingErrors = Not ActiveDocument.ShowSpellingErrors

    Set oRng = Selection.Range

    oRng.Collapse wdCollapseEnd

    oRng.Text = Chr(32)

    oRng.Text = ""

    End Sub

    Was this answer helpful?

    0 comments No comments