-
I need to transfer string data - both ascii and binary - between to processes. i'm thinking about using the windows message system (PostMessage ....), but unsure whether this could handle binary data and what the maximum string length is.
are there any other possibilities like using something activex related?
Thanks for your advice!
Felix
-
Pipes are probably your best method. Never used them though, so you'd have to look up some examples on them. The raw documentation is on MSDN:
Platform SDK->Base Services->Interprocess Communication->Pipes
-
Thanks for the hint! Was very useful...
Felix
-
Or you could use winsock and connect to your own system, or you could use files on the hdd, or you could use DDE ...