Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I had a macro for spell checking forms for Office 97 Word form fields. The
macro is not working for Office 2003 based Word form fields. Here is my old macro... Sub FormsSpellCheck() ' If document is protected, Unprotect it. If ActiveDocument.ProtectionType wdNoProtection Then ActiveDocument.Unprotect Password:="" End If ' Set the language for the document. Selection.WholeStory Selection.LanguageID = wdEnglishUS ' Perform Spelling/Grammar check. If Options.CheckGrammarWithSpelling = True Then 'ActiveDocument.CheckGrammar ActiveDocument.CheckSpelling Else ActiveDocument.CheckSpelling End If ' ReProtect the document. If ActiveDocument.ProtectionType = wdNoProtection Then ActiveDocument.Protect Type:=wdAllowOnlyFormFields, NoReset:=True End If End Sub |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Where does word 2003 store list of words 'ignored' during spell ch | Microsoft Word Help | |||
How do I get all my Word documents within one Word window | Microsoft Word Help | |||
Macros - Keyboard Commands | Microsoft Word Help | |||
How do you spell check text entered into a Word form field? | Microsoft Word Help | |||
Getting Spell Check Macro to work | Microsoft Word Help |