Dear all,
I am having a problem on how to disable the Shift key, Alt key and Ctrl key for my application. Does anybody know how I can do it?
Thanks for your sincere advices in advance.
Cheers with best regards,
Printable View
Dear all,
I am having a problem on how to disable the Shift key, Alt key and Ctrl key for my application. Does anybody know how I can do it?
Thanks for your sincere advices in advance.
Cheers with best regards,
You could just trap the keys in the KeyDown or KeyPress event (I don't remember which, it should be the one that accepts KeyAscii though).
Check with the ASCII table or use the VB constants to know what to set KeyAscii = 0.
HTH.