WD: WordBasic Examples: TextFormField, CheckBoxFormFieldLast reviewed: February 2, 1998Article ID: Q106332 |
The information in this article applies to:
SUMMARYThis article contains a sample macro that demonstrates the use of the following WordBasic statements or functions:
TextFormField CheckBoxFormFieldThis article supplements the information in online Help. To open this Help topic in Word for Windows, click Contents on the Help menu and then choose the "Programming with Microsoft Word" topic. In Word for the Macintosh, click the Help icon, select Microsoft Word Help and choose the "Programming with Microsoft Word" topic.
MORE INFORMATIONTextFormField CheckBoxFormFieldSyntax: TextFormField CheckBoxFormField Example: This sample macro inserts a table into a document then puts a text form field in the first cell.
Sub MAIN TableInsertTable .NumColumns = "2", .NumRows = "2", .Apply = "167" TextFormField FormFieldOptions .Enable = 1, .TextDefault = "Text Form Field", \ .Type = 0 NextCell Insert "This box is checked " CheckBoxFormField FormFieldOptions .Enable = 1, .Type = 1, .CheckDefault = 1 End Sub |
Additional query words:
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |