I found the following code to disable the insert key. What would it be to make sure the insert key is "on"? I do set the key preview to yes in the form.
Thanks, Jeff
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
Select Case KeyCode
Case vbKeyInsert
KeyCode = 0
Case Else
End Select
End Sub
Thanks, Jeff
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
Select Case KeyCode
Case vbKeyInsert
KeyCode = 0
Case Else
End Select
End Sub