execute an event procedure in another form

F

Focus

while opening another form with the DoCmd.OpenForm
i want to execute an event procedure that is stored in the opening form
how can i do it?

tanks
 
T

Tony C

Are you trying to run another event procedure in the Form
that you are opening with docmd.OpenForm?

If you are then for the Form you are opening, add the
line: -

Call PROCEDURENAME

To the Forms "On Open" Event Procedure.

HTH


Tony C
 
Top