Page 1 of 1
Disabling the taskbar on HPC (Jornada 720)

Posted:
Aug 2, 2002 @ 8:36am
by Kzinti

Posted:
Aug 2, 2002 @ 8:47am
by Kzinti

Posted:
Aug 10, 2002 @ 9:00pm
by gamefreaks
You can create a window with the EX_TOPMOST (or something) flag set. This hides and deactivates the taksbar...(IE: You cant click the buttons...)

Posted:
Aug 10, 2002 @ 9:14pm
by R0B
If you could figure out how to take controll of the buttons in the top row of a 720, that would be awsume. I played around with that for a little bit, but couldn't get it to work.

Posted:
Aug 11, 2002 @ 2:14pm
by gamefreaks
Got them on my J680. I suppose using them would be useful...

Posted:
Aug 12, 2002 @ 3:26pm
by motbe

Posted:
Aug 13, 2002 @ 6:30pm
by Kzinti
It seems the only safe way to do it is by using WS_EX_TOPMOST at window creation time. The other two methods (the one I suggested and the one with disabling the window) are both unnacceptable: if the game crash or exit without proper cleanup, the taskbar is not usable anymore.
With WS_EX_TOPMOST, the game can crash all it wants and the taskbar still works.
I will investigate hooking the special keys... Thanks for all the feedback!