WD: Workarounds for 255-Character Limit in FILLIN FieldLast reviewed: February 24, 1998Article ID: Q118512 |
The information in this article applies to:
SUMMARYIn Word, the maximum number of characters that can be entered into a FILLIN field prompt is 255. To achieve the effect of more than 255 characters in a FILLIN field you can:
MORE INFORMATION
Method 1: Place multiple FILLIN fields next to each otherYou can place multiple FILLIN fields next to each other. When you reach the maximum number of characters for the field, choose the OK button and continue the text in the next dialog box.
Method 2: Use Blank Fields and F11 to Navigate Through ThemTo use blank fields and F11 to navigate through them, use the following steps:
Method 3: Use the WordBasic/Visual Basic for Applications InputBox$ CommandMicrosoft 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 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 needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web: http://www.microsoft.com/support/supportnet/refguide/default.aspThe InputBox$ command displays a dialog box requesting a single item of data and returns the text entered in the dialog box when you choose the OK button. The InputBox$() command in the following macro examples assigns the text you enter to a variable. The insertion point is moved to a user-defined bookmark before inserting the contents of the variable. The syntax is as follows a$ = InputBox$(Prompt$ [,Title$] [,Default$])where: Prompt$ is the text displayed in the dialog box. Title$ is the title displayed in the title bar of the dialog box; if omitted, Word uses the title "Microsoft Word". Default$ is the default text proposed in the text box of the dialog box. Sub MAIN ' Display Inputbox. MyText$ = InputBox$("Type text") ' Goto pre-defined bookmark. EditGoTo "bookmark" ' Insert text entered throught the Inputbox command. Insert MyText$ End SubFor additional information information about how to do this in Word 97, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q159261 TITLE : WD97: Use Textbox Form Control to WorkAround 255 Character Limit |
Additional query words: Fillin field braces curly limit limitation 255
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |