Article ID: 101318
Article Last Modified on 6/13/2001
Option Explicit
Function DDEWithNWIND ()
Dim chan
chan = DDEInitiate("NWIND", "NWIND;TABLE Employees")
MsgBox DDERequest(chan, "FirstRow")
DDETerminate chan
End Function
Note that the first argument specified in the DDEInitiate command, the
application name, is "NWIND", which is the name of the .MDB file, and
not "MSACCESS."
? DDEWithNWIND()Note that a message box displays the first record from the Employees table in the NWIND.MDB database.
Additional query words: adk adt nxml
Keywords: kbhowto kbinterop KB101318