Classic Spell Check Dialog - Macros or Add-In to use to get classic dialog rather than Editor

Some people prefer the Spelling and Grammar check dialog from previous versions of Word to the Editor introduced with Word 2016. See the bottom of this post if on a Mac.


Three reasons given are:

  1. They want to check selected text rather than the entire document.

  2. They want the button to change all, which is not present in the Editor.


  3. When checking grammar, they want the option to check next sentence.


Here is a macro that checks spelling and grammar using the classic dialog box.


I am not sure what the effect of options in the Proofing Options will have on it.

It checks selected text or entire document. When done with selected text, asks about rest of document.

I include an IF to check on the version. I do not know how the ActiveDocument.CheckGrammar would work in earlier versions. Probably will be OK.


The new Editor, as of this writing, will not check just selected text nor check from the current location to the end. The classic dialog will.

According to this blog and the release notes for March 30, 2022, this has been corrected. I checked version 2206 on July 14, 20222 after applying this update, and the full document continues to be checked.



Word Version 2212 (Word 2016/2019/2021/365)



Sub ToolsProofing() 'Intercepts F7 keyboard shortcut
    'Charles Kenyon  26 February 2019 checked 24 October 2022
    If Application.Version < "16.0" Then
        Dialogs(wdDialogToolsSpellingAndGrammar).Show
    Else
        ActiveDocument.CheckGrammar
    End If
End Sub



The following (simply launching the dialog) did not work in versions 1901-1903.  It is working again using later versions.


Sub ToolsProofing() ' SpellCheckDisplayClassicSpellCheckDialog only one macro should have the name
'Macro created by Stefan Blom, MVP, September 2018
'https://answers.microsoft.com/en-us/msoffice/forum/msoffice_word-mso_win10-mso_o365b/word-2016-how-to-enable-old-style-spell-check/095bf6ce-7adb-4ac9-94c4-dcfe6cfb34af
'
    On Error Resume Next
    Dialogs(wdDialogToolsSpellingAndGrammar).Show
End Sub


Instructions for Installing Macros from Forums or Websites by Graham Mayor, MVP


See Using the Classic Spell Check Dialog Instead of Editor (my web page covering this material)


Naming the macro ToolsProofing intercepts the F7 keyboard shortcut for spell-checking but does not change what happens when you right-click on a misspelled word. Thus, pressing the F7 key with selected text gets you the classic dialog while right-clicking on a word with a red underline gets you the new Editor.

Intercepting events like Save and Print


The Mac has now incorporated the Editor. Apparently the macros still give the Editor.

However MVP Bob Jones (aka Cybertaz) informs me that the [Spelling...] command can be added to the QAT and will give the legacy dialog box.

November 17, 2022


I have created a free Add-In with the first macro.

It contains a .dotm file that has instructions for use and an installation macro.

I posted feedback. You can vote and comment here.

https://feedbackportal.microsoft.com/feedback/idea/4451a904-ae9e-ed11-a81b-000d3a0450e3

I am sometimes critical of Microsoft. However, I recognize that Microsoft is a huge company and the left hand often does not know what the right hand is doing.

There is tremendous pressure to get improvements and fixes into the hands of users, but they do need to stay in business. These problems for users are not, I am sure, deliberate. The employees there really do want users to have a pleasant experience and to be able to use the truly amazing powers of their software. The priorities can be changed by feedback, which is why I encourage use of those mechanisms. The squeaky wheel gets attention.


Was this discussion helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this discussion?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this discussion?

Thanks for your feedback.

* Please try a lower page number.

* Please enter only numbers.

* Please try a lower page number.

* Please enter only numbers.

Thank you Charles - it now works again!  Was this MS enabling the Dialog in the latest version?

1 person found this reply helpful

·

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

Both macros are working in Version 1910.
Volunteering to "pay forward" the help I've received in the Microsoft user community.


Charles Kenyon
Sun Prairie, Wisconsin
wordfaq[at]addbalance[dot]com

Legal site: https://addbalance.com

2 people found this reply helpful

·

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

I checked with Version 2206 and the Editor still checks the whole document even when summoned with selected text. I do not know if the macros work on the Mac but have no reason to think they do not.

Volunteering to "pay forward" the help I've received in the Microsoft user community.


Charles Kenyon
Sun Prairie, Wisconsin
wordfaq[at]addbalance[dot]com

Legal site: https://addbalance.com

1 person found this reply helpful

·

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

I checked in Version 2207 (not 2007) and the Editor still checks the entire document when a small part is selected.

Volunteering to "pay forward" the help I've received in the Microsoft user community.


Charles Kenyon
Sun Prairie, Wisconsin
wordfaq[at]addbalance[dot]com

Legal site: https://addbalance.com

2 people found this reply helpful

·

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

Well, this non-tech person tried to follow the steps to use the macro, but before I could paste in the commands, the tape-cassette symbol appeared. I've used macros in the past, but never one with commands like this one -- only for the simplest of tasks which I do on my screen in the document when that symbol comes up.

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

Well, this non-tech person tried to follow the steps to use the macro, but before I could paste in the commands, the tape-cassette symbol appeared. I've used macros in the past, but never one with commands like this one -- only for the simplest of tasks which I do on my screen in the document when that symbol comes up.

Hi Chana,

The cassette indicates that a macro is recording. You need to press any letter and then stop recording.

You could try the following:

  1. Open the visual basic editor (Alt+F11, on some computers Fn+Alt+F11).

  2. Click on the plus sign by the Normal project.


    Image

  3. Click on the plus sign by Modules under the Normal project.


    Image

  4. Double-Click on the NewMacros module.

    Image

  5. You should now have a white screen with one or more macros in it.

    Image

  6. Paste the following into that screen.

Sub ToolsProofing() 'Intercepts F7 keyboard shortcut
    'Charles Kenyon  26 February 2019 checked 7 October 2022
    If Application.Version < "16.0" Then
        Dialogs(wdDialogToolsSpellingAndGrammar).Showa f
    Else
        ActiveDocument.CheckGrammar
    End If
End Sub

  1. Press Ctrl+S to save.

  2. Close the visual basic editor.

  3. Press the F7 key

Here is a link to a free Add-In that you could use.

Sometimes it is difficult to get a template to download. This is to a zip file holding the template. You would download that, open it in Windows, and copy the template, pasting it into your Word Startup Folder.

This file already has the macro in it and you can use it by putting it in your Word Startup Folder. When you restart Word, the macro will be active. It contains directions for use.

Volunteering to "pay forward" the help I've received in the Microsoft user community.


Charles Kenyon
Sun Prairie, Wisconsin
wordfaq[at]addbalance[dot]com

Legal site: https://addbalance.com

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

The Mac has now incorporated the Editor. Apparently the macros still give the Editor.

However MVP Bob Jones (aka Cybertaz) informs me that the [Spelling...] command can be added to the QAT and will give the legacy dialog box.

November 17, 2022

Volunteering to "pay forward" the help I've received in the Microsoft user community.


Charles Kenyon
Sun Prairie, Wisconsin
wordfaq[at]addbalance[dot]com

Legal site: https://addbalance.com

1 person found this reply helpful

·

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

In reference to the Mac version (below) which I recently downloaded version 16.69 and forced to use this new Editor and really hate it, I'm baffled. I'm a bit intimidated since #1 - I don't even know what a QAT is and #2 - reading all the prior instructions were like deciphering military code.

This is not simple for the average Office user and I have no idea what I need to do to get rid of this Editor function and get back the original Spell Check function. Can you please guide a non-dev user?

=====

The Mac has now incorporated the Editor. Apparently the macros still give the Editor.

However MVP Bob Jones (aka Cybertaz) informs me that the [Spelling...] command can be added to the QAT and will give the legacy dialog box.

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

QAT = Quick Access Toolbar.

Microsoft MVP (Word) since 1999
Fairhope, Alabama USA
http://ssbarnhill.com
http://wordfaqs.ssbarnhill.com
Screen shots captured with TechSmith's Snagit

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

I've added the reason that the Editor does not have the Change All button.

Volunteering to "pay forward" the help I've received in the Microsoft user community.


Charles Kenyon
Sun Prairie, Wisconsin
wordfaq[at]addbalance[dot]com

Legal site: https://addbalance.com

1 person found this reply helpful

·

Was this reply helpful?

Sorry this didn't help.

Great! Thanks for your feedback.

How satisfied are you with this reply?

Thanks for your feedback, it helps us improve the site.

How satisfied are you with this reply?

Thanks for your feedback.

* Please try a lower page number.

* Please enter only numbers.

* Please try a lower page number.

* Please enter only numbers.

 
 

Discussion Info


Last updated December 7, 2023 Views 6,099 Applies to: