G
George Chen
Hi
I have lots applications are already written by emberded c++. It 's easy
to use
PostMessage in one application and catch this message in another
application's WndProc Function.
Here is my c++ code:
App a:
#define WM_SCANBARCODE WM_APP + 100
:ostMessage(HWND_BROADCAST, WM_SCANBARCODE , 0, 0);
App b:
case WM_SCANBARCODE: // WM_SCANBARCODE = WM_APP + 100
break;
Since .net have some powerful library like web service. I use C# to
develop new
application. But I do not know how to using simlar function in C# to
communication to my exist C++ application.
Any help would be appreciate.
George chen
I have lots applications are already written by emberded c++. It 's easy
to use
PostMessage in one application and catch this message in another
application's WndProc Function.
Here is my c++ code:
App a:
#define WM_SCANBARCODE WM_APP + 100
:ostMessage(HWND_BROADCAST, WM_SCANBARCODE , 0, 0);
App b:
case WM_SCANBARCODE: // WM_SCANBARCODE = WM_APP + 100
break;
Since .net have some powerful library like web service. I use C# to
develop new
application. But I do not know how to using simlar function in C# to
communication to my exist C++ application.
Any help would be appreciate.
George chen