Sending Messages between apps
-
I have two applications that I am working on. I want to be able to perform some routines in one application based on information from another app. How can I or how do I go about sending messages between the two applications? Is it possible since I already know what the window class name is to obtain a handle to that window and then just post a message directly to it? Thanks, -Eric
-
I have two applications that I am working on. I want to be able to perform some routines in one application based on information from another app. How can I or how do I go about sending messages between the two applications? Is it possible since I already know what the window class name is to obtain a handle to that window and then just post a message directly to it? Thanks, -Eric
VanHlebar wrote: post a message directly to it? Yes, you can do that. I suggest you use registered messages for that. Use the
RegisterWindowMessage
function to do that. Regards, João Paulo