WD: MailMergeReset Generates WordBasic Error 509

Last reviewed: February 2, 1998
Article ID: Q109835
The information in this article applies to:
  • Microsoft Word for Windows, versions 6.0, 6.0a, 6.0c
  • Microsoft Word for Windows 95, versions 7.0, 7.0a
  • Word for the Macintosh, versions 6.0, 6.0.1

SYMPTOMS

The WordBasic macro command MailMergeReset generates the following error message when executed in a document that is not formatted for a mail merge:

Word 7.x

   The MailMergeReset command is not available because the document is not
   a mail merge main document.

Word 6.x and Earlier

   Word Basic Err = 509

CAUSE

The MailMergeReset command is not available because the document is not a valid mail merge main document.

RESOLUTION

Use the MailMergeState() command as demonstrated in the following macro to determine if the current document is a mail merge main document, then run the MailMergeRest command based on the results.

   Sub MAIN
      If MailMergeState(0) = 2 Then MailMergeReset
   End Sub

MORE INFORMATION

This behavior is different from that of Word 2.x. The Word 2.x macro language allows the command FilePrintMergeReset to run in a normal document without generating any error messages. Word 6.x converts the FilePrintMergeReset command to MailMergeReset.

REFERENCES

"Microsoft Word Developer's Kit," version 6.0, page 582.


Additional query words: wdk
Keywords : kbmacroexample macword ntword winword word6 word7 word95 wordnt kberrmsg kbmacro
Version : WINDOWS:2.0,2.0a,2.0a-CD,2.0b,2.0c,6.0,6.0a,6.0c,7.0,7.0a; MACINTOSH:6.0,6.0.1,6.0.6.0.1a
Platform : MACINTOSH WINDOWS
Issue type : kbprb
Solution Type : kbworkaround


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: February 2, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.