Please Note: This article is written for users of the following Microsoft Word versions: 97, 2000, 2002, and 2003. If you are using a later version (Word 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Word, click here: Spell Checking Forms.
Written by Allen Wyatt (last updated June 30, 2020)
This tip applies to Word 97, 2000, 2002, and 2003
Many people use Word to create forms that are then used by others to input information. I am not talking about your average, run-of-the-mill forms which are printed out and reproduced on a copier. I am talking about using forms with Word's special form fields that are used to collect specific data without allowing the user to modify the text surrounding the input fields.
Since these types of forms are protected, by design, the user cannot run certain Word tools on the form and cannot do other things, such as run macros. This is beneficial in many instances, but can be a drawback if you have special needs. One such common need is to run the spell checker on the form after the user inputs their information. However, this cannot be done, again because tools such as the spell checker are disabled.
Truth be told, however, and you will find that when you insert a form field, Word inserts it with the Language attribute set to "no proofing." This means that even if you could run the spell checker, Word would ignore the information typed into the form fields.
While this may sound a bit hopeless, there is a way around it. You can run the spell checker on your form by using a macro. Since the macro will need to overcome the obstacles mentioned above, it must both unprotect the form and change the Language attribute for the fields. The simplest way to do this is with the following macro:
Sub SCForm() ActiveDocument.Unprotect Selection.WholeStory Selection.LanguageID = wdEnglishUS ActiveDocument.CheckSpelling ActiveDocument.Protect Type:=wdAllowOnlyFormFields, NoReset:=True End Sub
Note that the macro sets the Language attribute for the entire document to US English. If you are creating forms in some other language, you should make sure that you change the macro so the appropriate language is selected.
There is also a drawback to this macro which may not make it acceptable for all uses. When run, the macro spell checks everything in the document, not just the contents of the form fields. This is only a drawback if the form has lots of words which the spell checker may consider misspelled, such as highly technical prose. If you find yourself in such a situation, you will need to create a more complex macro that actually searches for and steps through the fields in the form.
There are two things to remember when using this macro with a form:
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (1040) applies to Microsoft Word 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Word (Word 2007 and later) here: Spell Checking Forms.
Learning Made Easy! Quickly teach yourself how to format, publish, and share your content using Word 2013. With Step by Step, you set the pace, building and practicing the skills you need, just when you need them! Check out Microsoft Word 2013 Step by Step today!
What is the easiest way to switch between English spelling variants in a document? This tip examines a couple of ways you ...
Discover MoreAre you bothered by the green underlines that Word uses to mark potential grammar errors in your document? You can hide ...
Discover MoreMost of the time Word will check both grammar and spelling at the same time. You can, however, instruct the program to ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2021-01-13 15:20:39
Deborah D Olsen-Busch
Does this macro work on content controls as well as form fields?
2018-07-18 16:04:42
Sorry, I haven't worked with Macros before. Can you update this is start from the beginning of creating the macro? Also, don't we need to add the password to the code? And is there a way to set a Spell Check button in the tool bar if you can't get the red squiggly line to show that a word is misspelled? Thanks!
2016-10-26 19:05:00
Audrey
How do I make the red squiggly line on protected field as they type the answers to indicate a word was spelled wrong.
Thanks!
2016-07-20 04:40:42
Sam
Hi,
Thank you for this - I have found it works fine on a short form but on longer forms it simply jumps to the first form field when I click on it. I've tried restarting in a whole new document but once the form gets too big this happens every time - any ideas please?
Thanks!
2015-12-14 15:46:52
David Evans
Works great - thanks.
It would also be nice to figure out a way to make such forms respond in the normal way to selecting text. Double-clicking a word in a protected form doesn't progressively select the word, then paragraph, and dragging doesn't select the words that should be selected.
Got a version of Word that uses the menu interface (Word 97, Word 2000, Word 2002, or Word 2003)? This site is for you! If you use a later version of Word, visit our WordTips site focusing on the ribbon interface.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments