Open blank subform

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can someone please tell me how to open a blank form and subform? Or point me
to a thread that already explains this? I can't find any similar info on
blank subforms, specifically.

Both currently open with the first record's information filled in. I want
everything blank until I choose an item from the combo box (which, by the
way, is the only thing that is empty when the form opens.)

Thank you.
 
Doe's this form used for data entry also?
If so, you can set the form to open for data entry so it will look empty

On the OnLoad event of the form write the code

DoCmd.GoToRecord , , acNewRec
 
Only the subform is for data entry. The main form shows details of the item
selected from the combo box.

Putting that line in the main form's OnLoad event opened both the main form
AND the subform "blank".

Thanks a million.
 
Back
Top