An alternative to Dave's solution might be to simply move to a new record when
opening the form. You can insert the following line into the form's "On Open"
event procedure:
DoCmd.GotoRecord , , acNewRec
This will open your form to a "new" record, yet allow the user to see existing
records, too.