Sorry, basic forms question

  • Thread starter Thread starter Mike Morton
  • Start date Start date
M

Mike Morton

I've searched back through the posts for an answer, but can't come up with
anything.

How can I open a form and automatically put it into 'Create New Record' mode
without setting it as a 'data entry' form ?

I know it's going to be something obvious that I've missed, so please be
gentle with me :-)

Thanks

Mike
 
in the form's On Load event procedure:

DoCmd.GoToRecord , , acNewRec

HTH,
Brian
 
Put the following in the form's open event:

DoCmd.GoToRecord,,acNewRec
 
Ahhh yes, I *knew* it was going to be something obvious that I'd missed.

Thanks very much for that gents.

Mike
 

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

Back
Top