Thoughts?
1) Search for a DDE client that can be automated using COM automation
2) Dig up an old version of Visual Basic or if you're comfortable use C or
MFC.
I you are really insistent PInvoke does give you access to the Win32 api's
such as SendMessage (this is how DDE communicates). That along with the
documentation you already have in theory will allow you to communicate using
DDE.
One last note here any .NET language would have the same diffculties
(1) .NET-based DDE
The standard DDE APIs are embedded in Windows (with the exception of the
NetDDE stuff that started going away with Vista), so there are some wrappers
out there. You might try using NDDE since it's a .NET component that can be
loaded and used as an object:
http://ndde.codeplex.com/
(2) commandline DDE
There are supposedly multiple commandline DDE utilities out there, but I
haven't seen much about them; you'll need to hunt to find them. Try DDE_run
and CMCDDE. Unfortunately CMCDDE appears to be missing in action from its
original website.
"thinknew" <thin...@discussions.microsoft.com> wrote in message
news:F42BDD80-8C0B-428E...@microsoft.com...