Where can I find these two Events?

C

Chris

Two quick questions:

* What and where is my Form's "Current Event"?
* What and where is my Form's "AfterUpdate Event"?

I need to add a line of code to these, and I don't know
where to find them.

Thank you,
Chris
 
F

fredg

Chris said:
Two quick questions:

* What and where is my Form's "Current Event"?
* What and where is my Form's "AfterUpdate Event"?

I need to add a line of code to these, and I don't know
where to find them.

Thank you,
Chris

Chris,
Open the form in Design View.
Right-click on the little square where the top and left rulers meet.
Select Properties.
Select the Events tab.

To enter code in the Current event, click on the Current line.
Write [Event Procedure] on that line.
Then click on the button with the 3 dots that appears on that line.

When the code window opens, write your code BETWEEN the 2 already
existing lines. Exit the window.

Do the same thing to enter code in the Form's AfterUpdate event.
 
Top