G
Guest
Currently I have a combo box on a form that a user can select from or type an
ID into. Then the user can either click the command button or they can hit
Enter twice (which tabs to the command button and opens it). This takes the
user to a form with data for the ID.
A user wants to be able to type in an ID in the combo box and just hit Enter
once (not hit enter twice and not have to click the command button) to get to
the form.
I can't figure out how to accomplish this. I thought I could just call the
button click event from the combo enter event. This didn't work:
Private Sub cboSAR_ID_Enter()
cmdGoTo_SAR_Click
End Sub
Any suggestions?
Thank you,
Judy
ID into. Then the user can either click the command button or they can hit
Enter twice (which tabs to the command button and opens it). This takes the
user to a form with data for the ID.
A user wants to be able to type in an ID in the combo box and just hit Enter
once (not hit enter twice and not have to click the command button) to get to
the form.
I can't figure out how to accomplish this. I thought I could just call the
button click event from the combo enter event. This didn't work:
Private Sub cboSAR_ID_Enter()
cmdGoTo_SAR_Click
End Sub
Any suggestions?
Thank you,
Judy