S
Steven
I have this on the KeyDown event of the form:
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = 112 Then KeyCode = 0
End Sub
So if the user hits the F1 key it does not go to help.
Is there a way to catdh the Ctrl+?? to basically control any Ctrl + key
combination.
for example:
If KeyCode = Ctrl+Break then KeyCode = 0
Can this be done somehow?
Thank you for your help.
Steven
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = 112 Then KeyCode = 0
End Sub
So if the user hits the F1 key it does not go to help.
Is there a way to catdh the Ctrl+?? to basically control any Ctrl + key
combination.
for example:
If KeyCode = Ctrl+Break then KeyCode = 0
Can this be done somehow?
Thank you for your help.
Steven