I am developing a Windows Mobile 6.5.3 application. My question is how can I open the Menu popup programmatically.
What I did is I simulate the touch event. by using
[DllImport("coredll")] private static extern void mouse_event(MOUSEEVENTF dwFlags, int dx, int dy, int dwData, int dwExtraInfo);
but here the problem is I need to specify the location of menu button and also it is showing some glance of mouse pointer, which I don't like...
Is there any message which I can send and the popup for the menu will open?
As requested I am adding some more information. I want to open the popup which opens after pressing the menu button programmatically.
