G
Guest
Hi,
I have an Application running on Windows Mobile 5.0 device.
I want to pass some commands from one application on this device to another
application on the device.
I learned about Windows messaging, and know i can make an unmanaged call to
postmessage or sendmessage.
[DllImport("coredll.dll")]
public extern static int SendMessage(IntPtr hwnd, uint msg, uint wParam,
uint lParam);
[DllImport("coredll.dll")]
public extern static int PostMessage(IntPtr hwnd, uint msg, uint wParam,
uint lParam);
I want to know how do i read a user message posted to one of the forms in my
application.
Please suggest me if there is any other better way of communicating from one
application to another application.
Thanks in Advance,
Murthy
I have an Application running on Windows Mobile 5.0 device.
I want to pass some commands from one application on this device to another
application on the device.
I learned about Windows messaging, and know i can make an unmanaged call to
postmessage or sendmessage.
[DllImport("coredll.dll")]
public extern static int SendMessage(IntPtr hwnd, uint msg, uint wParam,
uint lParam);
[DllImport("coredll.dll")]
public extern static int PostMessage(IntPtr hwnd, uint msg, uint wParam,
uint lParam);
I want to know how do i read a user message posted to one of the forms in my
application.
Please suggest me if there is any other better way of communicating from one
application to another application.
Thanks in Advance,
Murthy