Olá amigo boa noite!
Este exemplo você desabilita a tecla que quiser!
Desabilita F12:
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If (KeyCode = vbKeyF12 And (Shift And acF12Mask) = acF12Mask) Or _
(KeyCode = vbKeyF12 And (Shift And acF12Mask) = acF12Mask) Then
KeyCode = 0
MsgBox "Você pressionou a tecla F12, a mesma foi desabilitada, para melhor funcionamento do sistema!"
End If
End Sub
Desabilita F1:
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If (KeyCode = vbKeyF1 And (Shift And acF1Mask) = acF1Mask) Or _
(KeyCode = vbKeyF1 And (Shift And acF1Mask) = acF1Mask) Then
KeyCode = 0
MsgBox "Você pressionou a tecla F1, a mesma foi desabilitada, para melhor funcionamento do sistema!"
End If
End Sub
Um abraço!