vote up 0 vote down star

How to remove the SIP button of Windows mobile? I need a solution for Windows Mobile V6. Please post some sample app, or link about how to remove the SIP button.

I have tried out this technique..

SHFullScreen(this.Handle, SHFS_HIDESIPBUTTON);

This is not working for me. If you know please post full code.

flag

44% accept rate

1 Answer

vote up 0 vote down

If you want the entire display surface for your application, then this should do the trick:

iDisplayWidth = GetSystemMetrics(SM_CXSCREEN);
iDisplayHeight = GetSystemMetrics(SM_CYSCREEN);
SHFullScreen(hwndClient, SHFS_HIDESIPBUTTON | SHFS_HIDETASKBAR | SHFS_HIDESTARTICON);
MoveWindow(hwndClient, 0, 0, iDisplayWidth, iDisplayHeight, TRUE);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.