

Get answers from your peers along with millions of IT pros who visit Spiceworks. Nobody wants to submit a document full of grammar or spelling errors, but if spell check is't working in Microsoft Word, that's what could happen. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements. Editing and Spellcheck inside Fillable Forms in Word 2012. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. I located a post from 2003 that had the most effective solution (I had to make one modification to get it to work): Code: Private Sub cmdSpellCheckClick () 'Spell check certain. Create Forms that Users Can Fill in or Print in Word. I've been searching other forums and posts looking for a suitable vba example to spell check text within a userform textbox.
SPELL CHECK TEXT FORM FIELD WORD PLUS
Instead, select the entire document (or at least all the parts you want to protect, plus the content controls), click the Group button to the right of the controls in the Developer ribbon, and choose Group from the dropdown. Spell check works in text and rich text content controls. If youre using only content controls (and no legacy form fields), dont use forms protection. You do not want 'Filling in Forms' protection. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. It depends on the kind of field you are using and how you are restricting editing. There isnt a spell-checker in Acrobat, either, at least not for static text, only for comments and form fields. Microsoft provides programming examples for illustration only, without warranty either expressed or implied. If ActiveDocument.ProtectionType = wdNoProtection Then ActiveDocument.Protect Type:=wdAllowOnlyFormFields, NoReset:= True End If End Sub More Information If Options.CheckGrammarWithSpelling = True Then ActiveDocument.CheckGrammar Else ActiveDocument.CheckSpelling End If ' ReProtect the document. Selection.WholeStory Selection.LanguageID = wdEnglishUS Selection.NoProofing = False ' Perform Spelling/Grammar check. If ActiveDocument.ProtectionType wdNoProtection Then ActiveDocument.Unprotect Password:= "" End If ' Set the language for the document. Sub FormsSpellCheck() ' If document is protected, Unprotect it.
