I have created a form to enter data into a table. I want the user insert the data and go to the next record by simply pushing the Enter button on the keyboard. I made a button and put this code in the “On Enter” part of the command properties :
Private Sub Command394_Enter()
DoCmd.RunCommand (acCmdRecordsGoToNew)
End Sub
Firstly, is the above code correct?
I push the Enter button after the last data is put into the form, but it only changes the selection among the form records and the command button is neither activated nor works.
Secondly, how is this problem solved?
Thank you
Private Sub Command394_Enter()
DoCmd.RunCommand (acCmdRecordsGoToNew)
End Sub
Firstly, is the above code correct?
I push the Enter button after the last data is put into the form, but it only changes the selection among the form records and the command button is neither activated nor works.
Secondly, how is this problem solved?
Thank you