How to use save button to open new form as well....

  • Thread starter Thread starter Bayou BoB
  • Start date Start date
B

Bayou BoB

Hello Again!

How would I go about getting the save button on a form to not only
save the entry in the table, but also getting a new fresh record to
pop up once it has been saved? Currently we have an "add new record"
button to go along with save, delete, and exit... but is there a way
to have the save button not only save the new record entered, but also
have it bring up a new fresh record as well? Many thanks, you've all
been extremely helpful and patient. Keep up the great work!

Kevin
 
Try using the following after your "Save" command in the module behind
the "Save" button:

DoCmd.GoToRecord , , acNewRec

Matt
 
Back
Top