alt+ctrl+delete.. how can I suppress?

qadeer37

Well-known member
Joined
May 1, 2010
Messages
63
Location
Hyderabad,pakistan
Programming Experience
1-3
thanks it's working but what to do about if user presses alt+ctrl+delete.. how can I suppress these buttons?
 
Last edited by a moderator:
In the KeyDown event of the Form maybe:

VB.NET:
If e.KeyCode = Keys.Alt Or e.KeyCode = Keys.Control Or e.KeyCode = Keys.Delete Then
    e.SuppressKeyPress = True
End If
 
Thread split, different topics.
 
Back
Top