New Details

  • Thread starter Thread starter Fie
  • Start date Start date
F

Fie

Hey...

Is there anyway that when a user clicks on Customer Details it will
take them to the customer details form and instead of the user having
to click on a new record button it will just display blank record for
users to fill in new details..??

Fie
 
There are a couple of ways to do this.

1) In the form's Load event, tell it to move to a new record.

DoCmd.GoToRecord acDataForm, "Form1", acNewRec

2) Set the form's Data Entry property to Yes/True.
 
Back
Top