WD: WordBasic Examples: TextFormField, CheckBoxFormField

ID: Q106332

The information in this article applies to:

SUMMARY

This article contains a sample macro that demonstrates the use of the following WordBasic statements or functions:

   TextFormField

   CheckBoxFormField

This 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 INFORMATION

TextFormField

CheckBoxFormField

Syntax:

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:
Keywords          : kbmacro kbprg kbdtacode kbmacroexample winword macword word6 word7 word95 
Version           : WINDOWS:6.0,6.0a,6.0c,7.0,7.0a; MACINTOSH:6.0,6.0.1,6.0.1a
Platform          : MACINTOSH Win95 WINDOWS winnt
Issue type        : kbhowto kbinfo

Last Reviewed: March 28, 1998