ACC1x: Timeout While Waiting for DDE ResponseID: Q99942
|
Microsoft Access generates the message "Timeout while waiting for DDE response" when you try to initiate a dynamic data exchange (DDE) link with another application.
This error occurs when the function attempting to initiate the link is invoked using a RunCode action in a macro and the RunCode action macro is called from another application using DDE.
Microsoft has confirmed this to be a problem in Microsoft Access versions 1.0 and 1.1. This problem no longer occurs in Microsoft Access version 2.0.
Microsoft Access takes time-outs with all attempts to perform DDE to other applications if the other application is currently conversing with Microsoft Access as a DDE server.
Test Actions
------------
RunCode
Function Name: =TestDDE()
Option Explicit
Function TestDDE ()
Dim chan
chan = DDEInitiate("excel", "sheet1")
DDETerminate chan
End Function
Sub MAIN
chan = DDEInitiate("msaccess", "system")
DDEExecute chan, "test"
DDETerminate chan
End Sub
Timeout while waiting for DDE response
Additional query words: Dynamic Data Exchange
Keywords : kbinterop
Version : 1.0 1.1
Platform : WINDOWS
Issue type : kbbug
Last Reviewed: March 22, 1999