execute an event procedure in another form

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