opening straight to a blank entry

S

stuck! again!

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
 
G

Graham R Seach

Set the form's DataEntry property = Yes.

Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia
 
O

Ofer

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
 
Top