Windows CE Kiosk Part 101 - Full Screen Compact Framework Application

So, the first question about the Windows CE Kiosk mode is how to make a .NET Compact Framework application run without borders, caption, control box etc... so you only see the application form, this is remarkably easy, simply set the following properties on the form (I also set the form style to be maximized on startup).

set FormBorderStyle = None
Set ControlBox = False
Set MaximizeBox = False
Set MinimizeBox = False
Set Text =

- Mike