How do I lock task bar in CE.NET 4.1 ?

  • Thread starter Thread starter Ali Mertoglu
  • Start date Start date
A

Ali Mertoglu

I want to lock and hide taskbar that user can't exit my program even
softreset device.
Thanks !

Ali.
Vizyon Bilgi Islem Ltd.
Istanbul/Turkiye
 
Hi,

You can launch your application in full screen :
-System.Windows.Forms.FormWindowState.Maximized;
-hide the ControlBox / MaximizeBox / MinimizeBox
It will hide the taskbar.

BR


Fabien Decret
Windows Embedded Consultant

ADENEO (ADESET)
http://www.adeneo.adetelgroup.com/


Ali Mertoglu a écrit :
 
Since most Windows Mobile devices are soft reset via a reset button, not via
the user interface, you can't control that. You might be able to work
around this by adding your application to an Init key in the registry (or,
rather, by writing a C/C++ program and adding *that* to an Init key in the
registry and having it run your .NET CF program at a suitable time). You
can seach the old messages in this group for how to run your program on
startup. "Kiosk mode" is what you want for a search term as far as becoming
full-screen and preventing the usual ways around you.

Paul T.
 
Do you send couple of example codes ?
Thanks...

Hi,

You can launch your application in full screen :
-System.Windows.Forms.FormWindowState.Maximized;
-hide the ControlBox / MaximizeBox / MinimizeBox
It will hide the taskbar.

BR


Fabien Decret
Windows Embedded Consultant

ADENEO (ADESET)
http://www.adeneo.adetelgroup.com/


Ali Mertoglu a écrit :
 
Back
Top