I wonder if anyone has experience and / or sample code for creating DDE calls with Java. I made DDE using win32 calls from the stddde library (DdeInitialize, DdeClientTransaction), and could write a JNI wrapper for this, but I thought it would be nice to do this from JNA
I also have some doubts as to whether DDE calls should come from a message pump thread, and I'm not quite sure how to force this in Java.
The calls we will make are fairly simple (equivalent to the VBA functions DDInitiate, DDEExcecute and DDETerminate).
source
share