Tabular form

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).
 
G

guido via AccessMonster.com

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
 
Top