I have disabled the ctrl + f (find and replace) from access form of my database. Now i want to re-enable it again but I can't. I used the following code as a disable procedure
.
' Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
' If KeyCode = vbKeyA And Shift = acCtrlMask Then
' 'Catch Ctrl+A
' KeyCode = 0 'Suppress keypress
' End If
' End Sub
Can any help please ? many thanks