Questions tagged [dde]

Dynamic Data Exchange (DDE) is a form of interprocess communication on Windows that uses shared memory to exchange data between applications. Applications can use DDE for one-time data transfers and for ongoing exchanges and updating of data.

The DDE protocol is a set of messages and guidelines. It sends messages between applications that share data and uses shared memory to exchange data between applications. Applications can use the DDE protocol for one-time data transfers and for continuous exchanges in which applications send updates to one another as new data becomes available.

The preferred method for using DDE in your own application is with the Dynamic Data Exchange Management Library. DDEML provides an interface that simplifies the task of adding DDE capability to an application. Instead of sending, posting, and processing DDE messages directly, an application uses the functions provided by the DDEML to manage DDE conversations

MSDN article for DDE: http://msdn.microsoft.com/en-us/library/ms648711(v=VS.85).aspx

Wikipedia: http://en.wikipedia.org/wiki/Dynamic_Data_Exchange

251 questions
0
votes
1 answer

classes or wrapper for working with dde in .net?

Can anyone point me to classes or wrapper to use when working with DDE in .NET? yeah yeah, I know it's supposed to be obselete etc etc :) Just sometimes necessary to work with.
Rory
  • 40,559
  • 52
  • 175
  • 261
0
votes
1 answer

Run Word 2010 mail merge from access without query prompt

My scenario is similar to that described in excel VBA to Automatically select Yes when prompted during mail merge, except that I am running the VBA from the Access database that contains the data to be merged, and (this may be relevant) the Merge is…
user1921922
  • 3
  • 1
  • 2
0
votes
2 answers

how to tell when a dde response is complete?

I'm talking to a DDE server I don't have very much documentation for using the NDde .NET library. I've attached handlers for both the Advise and Disconnected events and am receiving data successfully. I never see a Disconnected event raised nor do…
darrix
  • 21
  • 3
0
votes
1 answer

Word DDE call ignored

I am calling from my C++ code two DDE commands: FormDde->DdeClientConv1->ExecuteMacro("[AddAddIn \"C:\\Projects\\wscs-trunk\\bin\\ws.dot\", 1][FileOpen .Name =…
truthseeker
  • 1,220
  • 4
  • 25
  • 58
0
votes
1 answer

Issue Using jDDE to connect Java to Excel

I tried writing a sample code - the simplest possible, I'm getting a connection error. package my.excel.dde; import java.awt.Desktop; import java.io.File; import java.io.IOException; import com.google.code.jdde.client.ClientConversation; import…
Charbel
  • 14,187
  • 12
  • 44
  • 66
-1
votes
1 answer

I want data from DDE to pandas dataframe without using excel, i am getting data like below

Symbol Name XCH LTP Qty. Chg % Chg Bid Qty Bid Ask Ask Qty Total Bid Total Ask Open P.Close Low High T.Volume Strike Price Exp. Date
NIFTY23JUN18500CE NSE…
-1
votes
2 answers

DdeConnect Fails with DMLERR_NO_CONV_ESTABLISHED

I'm trying to create a minimal DDE client & server to validate that I have a correct understanding of how to use Dynamic Data Exchange Management Library (DDEML). I have two simple Visual C++ 2019 projects with the following settings: Configuration…
Malcolm McCaffery
  • 2,468
  • 1
  • 22
  • 43
-1
votes
1 answer

EXCEL VBA MACRO EDIT

I need this macro to generate 2 (or more) data columns from 2 (or more) cell references. Currently it only does one data series from one cell reference. The script generates a table and updates the table with a new data entry on each second, then…
-1
votes
1 answer

Error using dde23 (line 224) Derivative and history vectors have different lengths

I am trying to solve a couple system of delay differential equations using dde23. While running the following code, I am getting an annoying error "Derivative and history vectors have different lengths" function sol = prob1 clf global Lembda…
zhk
  • 331
  • 2
  • 16
-1
votes
1 answer

What is the difference between DDE & WCF & WMI & WFP?

As I mentioned in the question, What is the difference between DDE & WCF & WMI & WFP? and when should I use eachone. I searched alot in google but I didn't get the point. Is there any intersection or common functions between them?
Haroon A.
  • 371
  • 2
  • 7
  • 19
-2
votes
1 answer

Excel VBA: How to Solve: DDE stops when remote application disconnect?

I have (.xlsm) file connecting through DDE linking to a prices provider's streaming application, now if the provider application disconnect (e.g. because of net disconnection), the DDE linking stops and even VBA scheduling to check last time my xlsm…
Adnan Al-Husain
  • 110
  • 1
  • 3
  • 17
1 2 3
16
17