Good morning everyone!
I have a client whose Ctrl-F function works sporadically. And if it matters (not trying to break the rules here) after Ctrl-F doesn't work - and he tries to close the database (using the upper right x) Access will hang, and he has to close it with Task Manager. It's so squirrely, sometimes Ctrl-Z acts up too! The only code behind the form is this:
I'm having trouble tracking the issue down because it's intermittent.Code:Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer) If KeyCode = vbKeyEscape Then KeyCode = 0 DoCmd.CancelEvent End If If (KeyCode = vbKeyPageUp) Or (KeyCode = vbKeyPageDown) Then KeyCode = 0 End If End Sub
TIA.


Reply With Quote

