Microsoft KB Archive/105033

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 09:46, 20 July 2020 by X010 (talk | contribs) (Text replacement - """ to """)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

WD: Cannot Change Default Data Field Names in Mail Merge Helper

Q105033



The information in this article applies to:


  • Microsoft Word for Windows, versions 6.0, 6.0a, 6.0c
  • Microsoft Word for Windows, versions 7.0, 7.0a
  • Microsoft Word for the Macintosh, version 6.0
  • Microsoft Word for Windows NT, version 6.0





SYMPTOMS

You cannot change the list of default mail merge field names in the Create Data Source dialog box.



CAUSE

You cannot change these defaults because the names are hard-coded in the Word program.



WORKAROUND

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.



REFERENCES

"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.