G Guest Aug 15, 2006 #1 how do i make it so that when my form opens it goes directly to a New Record? Thanks in Advance Travis
how do i make it so that when my form opens it goes directly to a New Record? Thanks in Advance Travis
G Guest Aug 15, 2006 #2 Open the form in design view and set the Data Entry proterty to Yes. You will not be able to view records with this form.
Open the form in design view and set the Data Entry proterty to Yes. You will not be able to view records with this form.
J Joan Wild Aug 15, 2006 #4 Depends on whether you always want to add a new record, or you also need to be able to see existing records. If the former, set the Data Entry property of the Form to Yes. If the latter, in the OnOpen event property of the form choose Event Procedure and use DoCmd.GoToRecord , , acNewRec
Depends on whether you always want to add a new record, or you also need to be able to see existing records. If the former, set the Data Entry property of the Form to Yes. If the latter, in the OnOpen event property of the form choose Event Procedure and use DoCmd.GoToRecord , , acNewRec