ineedyourhelp
MIS
I am trying to disable the Ctrl button while users are in a form. I do not want them to be able to use any of the ctrl + shortcuts for printing...find/replace etc....
I have used a similar code for disabling the F keys, but for some reason it is not working for the ctrl button. Here is what I tried.
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyControl Then KeyCode = False
End Sub
Any ideas?
Thanks
I have used a similar code for disabling the F keys, but for some reason it is not working for the ctrl button. Here is what I tried.
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyControl Then KeyCode = False
End Sub
Any ideas?
Thanks