Not sure what you mean by navigate? I simply use the arrow keys. The problem
is that in a datasheet, the up/down arrow keys work, but not in continues
form.
However, you can make the up/down arrow keys work just like a continues
form/spreadsheet. You have to first set the forms key-preview to yes, and
then insert the following code into the key down event.
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
' key hand
Select Case KeyCode
Case vbKeyUp
KeyCode = 0
On Error Resume Next
DoCmd.GoToRecord acActiveDataObject, , acPrevious
Case vbKeyDown
KeyCode = 0
On Error Resume Next
DoCmd.GoToRecord acActiveDataObject, , acNext
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.