WD: Cannot Change Default Data Field Names in Mail Merge Helper |
Q105033
You cannot change the list of default mail merge field names in the Create Data Source dialog box.
You cannot change these defaults because the names are hard-coded in the Word program.
WARNING: 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 Sub
NOTE: 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.
"Microsoft Word User's Guide," version 6.0, pages 641-646, 676-692
Additional query words: helper
Keywords : kbmacro kbprint kbdta winword kbmerge macword word6 word7
Issue type :
Technology :
|
Last Reviewed: November 4, 2000 © 2001 Microsoft Corporation. All rights reserved. Terms of Use. |