Select the product you need help with
How to code the ENTER key to move between form fields in a protected form in WordArticle ID: 211219 - View products that this article applies to. This article was previously published under Q211219 For a Microsoft Word 97 version of this article, see
187985
(http://support.microsoft.com/kb/187985/
)
. On This PageSUMMARY This article contains four Microsoft Visual Basic for
Applications macros that you can use to emulate the Microsoft Word 6.0 for
Windows functionality of the ENTER key for moving between form fields in
protected documents. MORE INFORMATIONMicrosoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals 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 needs. If you have limited programming experience, you may want to contact a Microsoft Certified Partner or Microsoft Advisory Services. For more information, visit these Microsoft Web sites: Microsoft Certified Partners - https://partner.microsoft.com/global/30000104
(https://partner.microsoft.com/global/30000104)
Microsoft Advisory Services - http://support.microsoft.com/gp/advisoryservice
(http://support.microsoft.com/gp/advisoryservice)
For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:http://support.microsoft.com/default.aspx?scid=fh;EN-US;CNTACTMS
(http://support.microsoft.com/default.aspx?scid=fh;en-us;cntactms)
For additional information about running sample code, click the article number below to view the article in the Microsoft Knowledge Base: 212536
(http://support.microsoft.com/kb/212536/EN-US/
)
OFF2000: How to Run Sample Code from Knowledge Base Articles
ENTER Key Functionality in Word 6.0In Word 6.0 for Windows, if you press the ENTER key in a document that is protected for forms, the insertion point moves to the next form field. By contrast, in later versions of Word, the ENTER key does not move to the next form field but instead inserts a paragraph mark, just as it does in an unprotected document. This allows you to enter multiple lines of text into a text form field.MacrosFollowing are four Visual Basic for Applications macros that you can use together to emulate the Word 6.0 for Windows functionality of the ENTER key in new protected form field documents based on a template. The following is a brief description of the functionality of each macro:
The context cannot be modified.
First Macro: Moving the Insertion Point to the Next Form FieldThis macro moves the insertion point to the next form field. If the current form field is the last one in the document, it moves the insertion point to the first form field.This macro uses the Bookmarks collection to retrieve the name of the current form field. The name of each form field is also the name of a bookmark inserted for the form field. If you have any other bookmarks in your document, you may have to add more code here to handle potential errors. The macro also assumes that all form fields in the documents allow user input. If this is not the case in your document, you need to add additional code in your macro. The macro checks to see whether the current section is protected or unprotected and then either moves to the next form field (in a protected section) or inserts a paragraph mark (in an unprotected section). This functionality is necessary for documents that contain both sections that are protected for form input and unprotected sections. Second Macro: Assigning the EnterkeyMacro Macro to the ENTER KeyThis macro attaches the EnterKeyMacro macro to the ENTER key, thereby reprogramming the function of the key when it is used in protected document form fields. When you use this macro in a custom template, name it AutoNew. This changes the functionality of the ENTER key in all new form documents based on the template.Third Macro: Assigning the AutoOpen Macro to the ENTER KeyAdd an AutoOpen macro with the following code. This ensures that the key functionality continues when you open a document based on the form template in the future.Fourth Macro: Removing the Command Assigned to the ENTER KeyThis macro restores the default functionality of the ENTER key. When you use this macro in a custom template, name it AutoClose.REFERENCESFor additional information about available resources for
creating custom solutions using Visual Basic for Applications and Microsoft
Word 2000, click the article numbers below to view the articles in the
Microsoft Knowledge Base: 212623
(http://support.microsoft.com/kb/212623/EN-US/
)
WD2000: Macro Programming Resources
226118
(http://support.microsoft.com/kb/226118/EN-US/
)
OFF2000: Programming Resources for Visual Basic for Applications
PropertiesArticle ID: 211219 - Last Review: November 23, 2006 - Revision: 2.7
| Article Translations
|


Back to the top








