How to Automatically Use ODBC Rather Than DDELast reviewed: February 5, 1998Article ID: Q105900 |
The information in this article applies to:
SUMMARYWhen you open a database file or attach a data file for a print merge in Word, Word will use DDE by default to gather the information. To automatically use ODBC, follow the directions below.
WORKAROUND #1WARNING: 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. Select the Confirm Conversions option when you specify which database to use.
Macros for Method #1REM Choosing a data file for a Print Merge Sub MAINFileConfirmConversions - 1 Dim dlg As MailMergeHelper GetCurValues dlg On Error Goto bye Dialog dlg MailmergeHelper dlg bye: End SubREM Opening a Database file using FileOpen. Sub MAINFileConfirmConversions - 1 Dim dlg As FileOpen GetCurValues dlg On Error Goto bye Dialog dlg FileOpen dlg bye: End Sub WORKAROUND #2If the database is listed in the [Extensions] section of the WIN.INI file, commenting out or removing the line will force Word to use ODBC to access the database.
Microsoft Access Example[Extensions] xlw=C:\WINDOWS\WINAPPS\EXCEL\EXCEL.EXE ^.xlw 'MDB=C:\WINDOWS\WINAPPS\ACCESS\msaccess.exe ^.MDBNOTE: To comment a line out of the WIN.INI file, insert an apostrophe at the beginning of the line.
|
KBCategory:
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |