SHFullScreen

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello.
I use this code, on a ppc:

Capture = true;
IntPtr hwnd = Win32.GetCapture();
Capture = false;
Win32.SHFullScreen(hwnd, Win32.SHFS_HIDESTARTICON);

to make my window not to show the start icon.
Win32 is a class defined by me where i import the dll's necesary to use this
function.
Th problem is that tha code works, but after i get to messageboxes from my
application with some error or something else the starticon is visible.
It happens all the time after 2 messageboxes.
Does anyone encounter this problem?
 
Back
Top