Empty fields on open

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.
 
A

Amy Blankenship

In the form's onload event, try

DoCmd.GoToRecord acDataForm, Me.Name, acNewRec

HTH;

Amy
 
Top