ADT: Use "MSACCESS" in DDEInitiate w/ Run-Time App (1.0, 2.0)

Last reviewed: April 7, 1997
Article ID: Q101372
The information in this article applies to:
  • Microsoft Access Distribution Kit version 1.1
  • Microsoft Access Developer's Toolkit version 2.0

SYMPTOMS

Advanced: Requires expert coding, interoperability, and multiuser skills.

Applications can initiate a dynamic data exchange (DDE) conversation with a run-time application developed with Microsoft Access by specifying "MSACCESS" rather than the .MDB file, as the application name.

STATUS

This behavior is by design.

MORE INFORMATION

To communicate with a run-time application using DDE, it is strongly recommended that you use the name of the .MDB file, not "MSACCESS," as the application name when you are initiating a DDE conversation.

The run-time version of Microsoft Access responds to both Microsoft Access and the name of the .MDB file as the application name.

Steps to Reproduce Behavior

  1. Start Microsoft Access and open the sample database NWIND.MDB.

  2. In the Database window, choose the Macro button and select Sample AutoExec from the list.

  3. From the File menu, choose Rename. In the Macro Name box, type "AutoExec" (without the quotation marks), and then press ENTER.

  4. Quit Microsoft Access.

  5. In Program Manager, choose Run from the File menu.

  6. Type the following line, and then press ENTER:

          C:\<ACCESS>\MSARN100.EXE NWIND.MDB
    

    where <ACCESS> is your Microsoft Access program directory.

  7. Start Microsoft Access again and create a new database, or open a database other than NWIND.MDB.

  8. Create or open a module and add the following Access Basic function:

          Option Explicit
    

          Function DDEWithNWIND ()
    
             Dim chan
             chan = DDEInitiate("MSACCESS", "NWIND;TABLE Employees")
             MsgBox DDERequest(chan, "FirstRow")
             DDETerminate chan
          End Function
    
    

  9. From the View menu, choose Immediate Window. Type the following line, and then press ENTER:

          ? DDEWithNWIND()
    

    Note that a message containing the first record from the Employees table in NWIND.MDB is displayed.

NOTE: The run-time application responds correctly to the DDEInitiate() statement that reads:

   chan = DDEInitiate("NWIND", "NWIND;TABLE Employees")
 

	
	


Keywords : DcmNwd kbusage
Version : 2.0
Platform : WINDOWS
Hardware : X86
Issue type : kbprb


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: April 7, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.