I\'m working on an app (Written in C#) that have a setting to run on KIOSK mode. I\'ve just an challenge here which is disabling Ctrl+Alt+Del
You will need to do some P/Invoke, in user32.dll, there's a method called SystemParametersInfo
, check out these resources for more info
http://pinvoke.net/search.aspx?search=SystemParametersInfo&namespace=[All]
http://msdn.microsoft.com/en-us/library/windows/desktop/ms724947%28v=vs.85%29.aspx
I did something similar a long while back, but no longer have the code, though I did find this (it's in vb6), but it shouldn't be too hard to get the idea and translate to .NET
http://www.developerfusion.com/code/1021/how-to-disable-ctrlaltdel/