Tabular form

  • Thread starter Thread starter KLR
  • Start date Start date
K

KLR

I have a tabular form set up and I want the user to be taken straight
to the add new record line right at the end when the form is opened.

How do I do this? It must be simple! (Bit like me).
 
Add an "On Load" event to your form (Go to the "Event" tab of the property
form, find "On Load", select "Event Procedure", click the "..." button).
Enter: DoCmd.GoToRecord , , acNewRec
 
Back
Top