GetBookMark$ Returns Value and Form Field NameLast reviewed: February 5, 1998Article ID: Q123693 |
The information in this article applies to:
SUMMARYIf you use the WordBasic GetBookMark$() function to return the value of a form field bookmark, the form field name and value are returned. For example, if you have a text box form field named "text1," the following macro returns the word "FORMTEXT" followed by the text typed into the text1 form field.
Sub MainName$ = GetBookmark$("text1") MsgBox Name$ End SubIf you type the name John in the text1 form field, the above macro displays the following string:
FORMTEXT JohnTo correctly retrieve information from form fields, use the GetFormResult$() or GetFormResult() function. The following macro example correctly returns only the text typed into the text1 form field.
Sub MainName$ = GetFormResult$("text1") Msgbox Name$ End SubFor more information on the GetFormResult$() and GetFormResult() functions, see the "GetFormResult$() function" topic in the Word 6.0 Help file.
REFERENCES"Microsoft Word Developer's Kit," for version 6.0, pages 491-494
|
KBCategory: kbusage kbmacro
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |