Hi ALl.

Do you know any method to completely hide the top taskbar on a WinCE 5 handheld device ?
The following snippet works

but it only disables the topmost taskkbar so the true clickable taskbar cannot be dropped down BTW, at the bottom of the screen theare are two more buttons: the Windows button on the bootom left and the OK (sometimes a cross) button on the bottom right. Is it any way to hide or disable them ?

{$IFDEF WINCE}
var
    FTaskHandle : THandle;

  FTaskHandle := FindWindow('HHTaskBar', nil);
  ShowWindow(FTaskHandle, SW_HIDE);
  WindowState := wsMaximized
{$ENDIF}

Thanks,

Antonio.



--
_______________________________________________
Lazarus mailing list
[email protected]
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Reply via email to