Making my App, unclosable

genu

Well-known member
Joined
Jun 9, 2005
Messages
94
Programming Experience
1-3
Hi, I'm making an application that locks the system. How Do I make it so that they cannot use these Keys:

CTRL
DEL
ALT
ESC
F1 - F12
ETC


basically disssable all the keys except the letters, so that they can type in the password.

thx
 
Did you try declaring a variabel as a key and then putting an event if the variabel is alt or one of the other keys.
eg:
dim k as keys
if k.alt then...
 
Back
Top