opening straight to a blank entry

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
When I open a form I want it to go straight to a new entry. As in blank
fields. How do make access do this?

Your help will be greatly appreciated. Thankyou
 
Set the form's DataEntry property = Yes.

Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia
 
If you want to open the form, sometimes for data entry and sometimes for
edit, or view, it will be better to specify in the on open command how you
want it rather then changing the properties of the form

'For data entry
docmd.OpenForm "FormName",,,,acFormAdd

'For Edit
docmd.OpenForm "FormName",,,,acFormEdit
 

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