JJT
10-29-2001, 12:33 PM
Is there a way for me to customize my form so that when I press the "Enter" key, I move
to a new record ?
Thanks.
to a new record ?
Thanks.
|
View Full Version : Return to New Record JJT 10-29-2001, 12:33 PM Is there a way for me to customize my form so that when I press the "Enter" key, I move to a new record ? Thanks. jwindon 10-29-2001, 02:31 PM Create a command button that moves to a new record. On the OnCurrent event of your form, set the focus to the command button. Then when you hit ENTER it will actually "Click" the command button. The code for the OnCurrent to put in between the Private Sub ??????_Click() is Me.CommandButtonNameGoesHere.SetFocus Hope that helps you out. |