Board index » cppbuilder » Communication Interface between 2 Windows app
Thomas J
![]() CBuilder Developer |
Thomas J
![]() CBuilder Developer |
Communication Interface between 2 Windows app2006-01-26 04:06:51 PM cppbuilder76 Hello all, I have to think about an interface which is dealing with communication between 2 windows applications. The communication is something like this start form x with param x,y,z So in the first step only async. I know from the past (10 years ago) about DDE. But I think exist a new framework or? Thanks for your help |
Tom
![]() CBuilder Developer |
2006-01-26 08:36:51 PM
Re:Communication Interface between 2 Windows appQuoteHello all, You also have the possibility to use a file to exchange data, and to send a WM_USER+xxx to the other app when the file is written, but this is really ugly. The last option i know is to use sockets, and to open a socket between the two apps. The advantage of this option is that if you wish to put the two apps in separate PCs one day, you'll have nothing to change in your code. Regards, Tom |
Remy Lebeau (TeamB)
![]() CBuilder Developer |
2006-01-27 02:21:44 AM
Re:Communication Interface between 2 Windows app
"Thomas J" < XXXX@XXXXX.COM >wrote in message
QuoteI know from the past (10 years ago) about DDE. But I think WM_COPYDATA, custom window messages - just to name a few. Gambit {smallsort} |