Click Event

K

Krisse

Where do I put my DoCmd I want it to run when a user
clicks on the newrecord >* button on the record navigator?

I am opening a form just to give the user some information
they need before entering the first piece of data on a new
record.

Thanks!
 
R

Rick Brandt

Krisse said:
Where do I put my DoCmd I want it to run when a user
clicks on the newrecord >* button on the record navigator?

I am opening a form just to give the user some information
they need before entering the first piece of data on a new
record.

In the Form's Current event.

If Me.NewRecord = True Then
DoCmd...
End If
 
Top