Windows Form in Full Screen "Kiosk Mode"

[Quick Tip] The following lines of code (VB.NET) will produce a full screen Windows form – like the kiosk mode in Internet Explorer (press F11 to toggle). This screen mode is quite useful in situations where full screen user interactivity is required or the GUI demands full screen usability, like in multimedia demos, POS systems, embedded kiosk applications, touchscreen-driven apps, software installer programs?etc.

With Me< ?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

.MaximizeBox = False

.MinimizeBox = False

.TopMost = True

.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None

.WindowState = System.Windows.Forms.FormWindowState.Maximized

End With

Show Comments