Thanks Eugene,
Since my application runs on PocketPC, I am afraid MsgConnecct can not
run on PocketPC.
I just want to find a simple method to notify each other. Here is my code
in C++:
App a:
#define WM_SCANBARCODE WM_APP + 100
::PostMessage(HWND_BROADCAST, WM_SCANBARCODE , 0, 0);
App b:
case WM_SCANBARCODE: // WM_SCANBARCODE = WM_APP + 100
break;
Thanks anyway,
George Chen
"Eugene Mayevski" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hello!
> You wrote on Tue, 17 May 2005 11:42:24 -0700:
>
> GC> Since .net have some powerful library. I use C# to develop new
> GC> application. But I do not know how to using simlar function in C# to
> GC> communication to my exist C++ application.
>
> You can try MsgConnect ( http://www.eldos.com/msgconnect/ ) for this.
> MsgConnect lets you communicate between applications residing on the same
> or
> different systems easily using TCP, UDP, HTTP, memory-mapped files.
>
> With best regards,
> Eugene Mayevski
>