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
3
votes
1 answer

logging DDE conversations in windows 10

I need to trace where a DDE conversation is failing in windows 10. This is handing a file path to I always used DDESpy, but it crashes under win10 when monitoring events. I have tried running under all legacy modes. Can the event viewer be…
srm2710
  • 43
  • 3
3
votes
1 answer

SAS DDE write multiple line in cell

I want to insert multiple line into one cell, but DDE does't work with directly put '0A'x. filename xlSheet1 dde "Excel|c:\test.xlsx.Report!R1.C1:R1.C3" notab; data _null_; file xlSheet1; a = "test"; b = cat("&sysdate","-",…
Greatvia
  • 155
  • 1
  • 11
3
votes
1 answer

Create DDE server in python and send data continuously

I am trying to write a DDE server in python which needs to send a continuously changing string to a program which is connected as a DDE client. The program which connects to a DDE server uses the following DDE settings to connect [Service: Orbitron,…
Nils
  • 97
  • 2
  • 12
3
votes
2 answers

Can not make DDE connection using python. win32ui appears not working

I am new to Python (version 2.7). I have been using for a long time some excel workbooks that uses DDE function to capture "real-time market data" - that is served by one Market Data Provider ("Matriks", if matters). In a bit to simplify my overall…
Aykut Saribiyik
  • 775
  • 1
  • 6
  • 15
3
votes
2 answers

Use of Integer Atoms

String Atoms are useful in DDE(Dynamic Data Exchange). What is the use of Integer Atoms?
p32
  • 33
  • 2
3
votes
1 answer

Delphi: CreateProcess + WaitForSingleObjects + DDE = 15 second delay

I experienced interesting problem. I have a DDE client which is read some value from DDE server. When I start this client from Delphi, or with dblclick on the exe, the result instantly appears. But: when I started it from Indy TCPServer's thread or…
durumdara
  • 3,411
  • 4
  • 43
  • 71
3
votes
1 answer

How to fix cell format as excel cell is losing format after executing macro

Hi i am populating data into excel worksheet using DDE.Execute command from Oracle forms. Code is fine but when I am executing the below macro FORMAT_SECTION_TITLE_2 using DDE.Execute command it colors the line but also changes the Date to number…
Shax
  • 4,207
  • 10
  • 46
  • 62
2
votes
1 answer

Bloomberg DDE Error when called from Python

I am trying to send commands to Bloomberg Terminal using DDE. Eg: to display the Microsoft page I can send: MSFT This works fine using a VBA library from EXCEL. However I am trying to do the same from a…
ashbyp
  • 326
  • 2
  • 14
2
votes
3 answers

add images to excel sheets using DDE

I am working on a Delphi project, where i need to export values to excel sheets. My project supports two ways of accomplishing this: 1) using thied party dll that manages the sheet creation 2) using built in dde, and executing commands over…
Bobos
  • 89
  • 2
  • 6
2
votes
2 answers

DDE: Implementing an application which launches correctly via Shell and ddeexec

I am trying to implement an application which registers itself as a DDE Server so that it responds correctly to our custom ".qsx" filetype, just as WinWord responds to the ".docx" filetype. i.e. If the application is already running and someone…
Paul Hollingsworth
  • 13,124
  • 12
  • 51
  • 68
2
votes
2 answers

SendMessage() WINAPI gets hang when used to connect to a DDE server

I have a DDE client app which connects to the DDE server app by using SendMessage() WINAPI. Following the SendMessage() call which gets hang while requesting connection to the DDE Server. Both DDE Client app and server app are in…
decisive
  • 79
  • 12
2
votes
2 answers

DDE using System.Windows.Automation

Is it possible to use the .NET System.Windows.Automation namespace and do the equivalent of the old DDE? My requirement is to read the text inside a command window(which could be a mainframe screen as well) from my .NET Windows Forms application. Am…
cethie
  • 49
  • 3
  • 8
2
votes
1 answer

Second order delay differential equation in Julia

I'm new to Julia programming I managed to solve some 1st order DDE (Delay Differential Equations) and ODE. I now need to solve a second order delay differential equation but I didn't manage to find documentation about that (I previously used…
2
votes
2 answers

How do I bring my window to the front after a DDE event?

On a DDE event my program loads a file in and should pop to the foreground. I was using show; It only seems to be working like then when i have hidden the window. So i added bringtofront; Again this worked if it was hidden, closed, minimized or…
Arthur
  • 3,376
  • 11
  • 43
  • 70
2
votes
2 answers

How to Cache Real-time Data?

I'm working on a windows forms application (.NET 4.0). My form contains a 'Fast Line' chart using the Microsoft chart control included in VS2010. The chart gets filled with about 20,000 datapoints. My application then starts receiving market data…
Marven
  • 53
  • 2
  • 6
1 2
3
16 17