How to create a kiosk-like UI, so that the user can never exit from it or switch to another application?
I need to create a simple Delphi application, kiosk style. It is a very simple thing, a single form where the user writes some personal info to register to an event. 4 TEdit and a TButton. What I want to achieve is to avoid the user does any action different then typing in TEdit or clicking on the TButton. For example I don't want he does ALT TAB (switchin applications), pressing windows key on keyboard, doing ctrl-alt-canc, etc... I can add a passowrd protected Button that enables/disables this "Kiosk mode", in this way as I need to exit the kiosk mode I simply press that button and exit. How