WD: Calculation Text Fields Within Forms Fail to UpdateLast reviewed: February 11, 1998Article ID: Q110014 |
The information in this article applies to:
SYMPTOMSCalculation text fields within forms are not updated automatically.
RESOLUTION
Word 97 for Windows or Word 98 Macintosh EditionUse the Calculate On Exit option located in the Text Form Field Options dialog box. (To display this dialog box, click a form field, and click the Form Field Options button on the Forms toolbar.)
Word 6.x and 7.xWARNING: ANY USE BY YOU OF THE CODE PROVIDED IN THIS ARTICLE IS AT YOUR OWN RISK. Microsoft provides this macro code 'as is' without warranty of any kind, either express or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose. You cannot manually update a FORM field in these versions of Word. To update text fields which are defined as calculation fields, create a macro using the following steps:
MORE INFORMATIONThe following is a quick macro that serves as a generic for forms. It can be used in place of the macro shown in the Resolution section above.
Sub MAIN For count = 1 To CountBookmarks() On Error Resume Next SetFormResult BookmarkName$(count) Err = 0 Next End SubThis macro attempts to update all bookmarks in the document. Calculation fields must have a bookmark (while other fields do not). If a bookmark resides within the protected document, an error occurs (which is caught by the third line of the sample above, and skipped). This macro will give the impression of on-the-fly updating if it is added to each field; however, this will work slowly if your document contains a large number of calculation fields. If you need to update individual fields, use the SetFormResult command followed by the calculation field bookmark.
|
Additional query words: update updating field fields form forms bookmarks
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |