Hi Carlos,
I've never really had to deal with DDE, so this is as much an educated guess as
anything ;)
I've looked into DDE in the past and had the following MSDN entries bookmarked
(you might find 'em useful?)...
DDE [Win32]
WM_DDE_INITIATE
WM_DDE_EXECUTE
(and various other similar messages)
The first is a general topic, the latter are Window Messages used via
SendMessage(..) and seem to be most applicable if you have a window handle
available. If you're using CreateProcess() or such, then you should be able to
get necessary info by using the ProcessID?
Hope it helps! ;)
~TJ
----- Original Message -----
From: Juan Carlos
Sent: Friday, April 16, 2004 12:12 PM
Hi,
I need to port a VisualBasic function to C++ (MFC). The VB function simply
launches another application (Rasmol, RasWin.exe) and executes some commands in
that application. This is the VB code I need to implement in C++:
<snip>