What is the best way to make two separate projects sends commands to each other?
Printable View
What is the best way to make two separate projects sends commands to each other?
Best way is to user SendMessage/PostMessage to shoot messages between apps. Just have the receiving app post it's hWnd in a public place (INI file, registry, wherever) when it launches, and have the sending app read the hWnd when it sends a message.