next record

J

jcahi

I have textBox on a form. I want to write a onChange event that will go to
the next record on the form.

I need the code of the Sub.
thanks
 
C

Chris Nebinger

Add this code to the AfterUpdate event. The change event
would fire too many times.

DoCmd.GoToRecord acDataForm,Me.Name,acNext


Chris Nebinger
 
Top