New record

S

Spencer Hutton

is there a way that when i open a form, either manually, or through a macro,
to have it automatically go to a new record, so the user will not have to
hit the >* button. can it just open up to a new record?
 
L

Les

Hi,
I put the following in the "on load" event for the form:

DoCmd.GoToRecord , , acNewRec
 
Top