Start with blank form

  • Thread starter Thread starter rblivewire
  • Start date Start date
R

rblivewire

I have a form with subforms on it. I need the form to start as a blank
form. Now, when a user types some info in the form, on the next new
entry that info is on the form. Is there an easy way to get a clean
forms. If not, I have check boxes and text boxes that need to start
out as empty. Any help is appreciated.
 
If your form is only for adding new record, you can set the Data Entry
property of the form to Yes, and it will always start with a new (blank)
record; however, you will not be able to edit or delete records on this form.
If, on the other hand, you want the user to be able edit or delete as well
as add records, you can put the following in Load event of the form:
DoCmd.GotoRecord , ,acNewRec
 
Back
Top