I know that I am not the first asking the question about running a PDA in kiosk mode.
What I did by now is to disable the taskbar by running the following line of code
[DllImport("coredll.dll")]
public static extern int ShowWindow(int hwnd, int nTaskShow);
The goals was to disable the start-button by hiding the taskbar. This didn't work out (otherwise I would not write this post...)
Then I found something about the SHFullScreen command and the way to use the SHFS_HIDESTARTICON parameter. This command was compiling and I could test it on the PDA however the start-button still was there and if you hit it quit often in a short timespan the whole PDA software crashed. So I might have done something wrong.
So I wonder - has the SHFullScreen command the ability to disable the start-button and if so can you give me a few lines of code, please.
I checked out the whole forum and I couldn't find someting that worked out well for me - also nothing on the OpenNETCF Forum. So if you pls drop a few lines of code for me I'd be very grateful.
Thank you very much
Greetings Taggert