What event is fired when one uses the Access add new record selector?

J

JJ_377

What event is fired when one uses the Access add new record selector? I
need to put code in that event. I would like the resulting blank form
to autopopulate with information.
Thank you
 
K

Klatuu

Use the form's Current event and look to see if it is a new record:

If Me.NewRecord Then
'Do you population here
End If
 
Top