Tenho um form de cadastro, ao clicar em novo abre um novo registro, só que se apertar ESC vai para novo denovo e perde a numeração automatica do registro, tentei o código abaixo para desabilitar o ESC mas não deu certo.
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If (KeyCode = 27) Then
KeyCode = 0
End If
End Sub
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If (KeyCode = 27) Then
KeyCode = 0
End If
End Sub