Click Event

  • Thread starter Thread starter Krisse
  • Start date Start date
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!
 
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
 
Back
Top