form

G

Guest

I need to make my record selector default to add,
everytime I load the form, I am using Access 2000.

Help!!
 
D

Denny

If you only need to add records, change the form's 'Data Entry' property to True.
 
D

Denny

Also, if you want it to add new when opened, but still give the user the ability to see existing ones

Private Sub Form_Load(

DoCmd.RunCommand acCmdRecordsGoToNe

End Su

Hope that helps you out
 
Top