SHFullScreen is a simple boolean function for hiding or displaying CE and PocketPC desktop elements such as the TaskBar, the Start Icon and the SIP (Standard Input Panel).
Public Shared Function SHFullScreen( hWnd as IntPtr, flags as Integer ) as Integer
.
Update. Microsoft's SHFullScreen definition at http://msdn.microsoft.com/en-us/library/aa453694.aspx states that SHFS_SHOWTASKBAR and SHFS_HIDETASKBAR can be used with Windows CE, but remaining State flags pertaining to the SIP and Start Icons are only relevant in Pocket PC.
SHFullScreen is a simple boolean function for hiding or displaying CE and PocketPC desktop elements such as the TaskBar, the Start Icon and the SIP (Standard Input Panel).
An IntPtr is a pointer to a memory location (unmanaged) that adapts to the platform it is running on (64-bit, etc.) UNLIKE a standard int/Integer. You should always use this type for unmanaged calls that require it, even though an int will appear to work on your development machine.
SHFullScreen is a simple boolean function for hiding or displaying CE and PocketPC desktop elements such as the TaskBar, the Start Icon and the SIP (Standard Input Panel).