blank data entry form

abdul

New member
Local time
Today, 23:51
Joined
Apr 12, 2011
Messages
4
I want a blank data entry form to be opened whenever i want to do data entry, i have created on data entry form but it always opens with some record showing in it
 
I am guessing that you want to open the form to enter a new record each time the form is opened.

In the On Open event for your form, type the following line of code:

DoCmd.GoToRecord , , acNewRec

This will open the form at a new record each time.
 
Or, if you only want to enter new records with the form and don't ever want to see existing records, go to Properties - Data and set the form's Data Entry Property to Yes.

Linq ;0)>
 

Users who are viewing this thread

Back
Top Bottom