How To Have A Form Start With A Blank?

  • Thread starter Thread starter WSR
  • Start date Start date
W

WSR

Access 2007

I have created a form for input and the user wants it to start at a blank
form.

How can I accomplish that?

Your help is greatly appreciated!!!

(B^>)-]=[
 
Put the following code in the OnLoad Event of the form

DoCmd.GoToRecord , , acNewRec

This will open the form in a state that is ready to enter a new record,
but also allow you to search existing records.
 
Thanks Darrell and Karl for your replies.

B^>

KARL DEWEY said:
Set the DataEntry property to Yes.
--
Build a little, test a little.


WSR said:
Access 2007

I have created a form for input and the user wants it to start at a blank
form.

How can I accomplish that?

Your help is greatly appreciated!!!

(B^>)-]=[


.
 
Back
Top