Empty fields on open

  • Thread starter Thread starter Hanksor
  • Start date Start date
H

Hanksor

I have a form that uses a combo box to find records on a form. Everything
works great, but the girls that use the form don't like the form opening up
with record 1 filling the fields. Is there a way to open the form with the
fields blank and then use the combo box to populate the fields? I've search
everywhere and have yet to find an answer.

Any help will be appreciated.
 
In the form's onload event, try

DoCmd.GoToRecord acDataForm, Me.Name, acNewRec

HTH;

Amy
 
Back
Top