WD: Cannot Change Default Data Field Names in Mail Merge HelperLast reviewed: February 13, 1998Article ID: Q105033 |
The information in this article applies to:
SYMPTOMSYou cannot change the list of default mail merge field names in the Create Data Source dialog box.
CAUSEYou cannot change these defaults because the names are hard-coded in the Word program.
WORKAROUNDWARNING: 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. Although you cannot change the defaults, you can use the following sample macros to automatically change the field names when you create a mail merge data file.
Sub Main Dim Dlg As MailMergeCreateDataSource GetCurValues Dlg Dlg.HeaderRecord = "First,Last,whatever" ' List of field names 'Use Windows list separator to delimit field names. Dialog Dlg MailMergeCreateDataSource Dlg End SubNOTE: If you press ESC to cancel this macro while it is running, a WordBasic error occurs. Add an error-trapping routine if you want to avoid such error messages.
REFERENCES"Microsoft Word User's Guide," version 6.0, pages 641-646, 676-692
|
Additional query words: helper
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |