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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top