D
David D Webb
I have an application that uses a SIP control on several forms without a
menu bar. Previously I have enable the SIP icon with the following code.
On the Axim X51 with WM5, it no longer works. Are there any work-arounds?
public static void ShowSipButton(Form curForm)
{
int SHFS_SHOWSIPBUTTON = 0x4;
curForm.Capture = true;
IntPtr hwnd = GetCapture();
curForm.Capture = false;
SHFullScreen(hwnd, SHFS_SHOWSIPBUTTON);
}
-Dave
menu bar. Previously I have enable the SIP icon with the following code.
On the Axim X51 with WM5, it no longer works. Are there any work-arounds?
public static void ShowSipButton(Form curForm)
{
int SHFS_SHOWSIPBUTTON = 0x4;
curForm.Capture = true;
IntPtr hwnd = GetCapture();
curForm.Capture = false;
SHFullScreen(hwnd, SHFS_SHOWSIPBUTTON);
}
-Dave