Add Button then New record

M

Mcrawford

I would like to create a button on my form that will save the current record
and automatically advance to a new blank form to enter a new record. How is
this done?

I'm new to Access 2003 so the more detail the better...
 
U

UpRider

In the ON CLICK event for the button, type

DoCmd.GoToRecord , , acNewRec
Me.txtName.SetFocus 'this will put the cursor at the named location,
if needed

UpRider
 
M

Mcrawford

Thanks so much, that did the trick!

UpRider said:
In the ON CLICK event for the button, type

DoCmd.GoToRecord , , acNewRec
Me.txtName.SetFocus 'this will put the cursor at the named location,
if needed

UpRider
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top