next record

  • Thread starter Thread starter jcahi
  • Start date Start date
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
 
Add this code to the AfterUpdate event. The change event
would fire too many times.

DoCmd.GoToRecord acDataForm,Me.Name,acNext


Chris Nebinger
 
Back
Top