form open chain of events

  • Thread starter Thread starter Garth
  • Start date Start date
G

Garth

Can someone let me know where to find the chain of events
in order of occurance when a docmd.openform command is
issued in VBA? Perhaps someone knows and can list them.
It would help me in a problem.
 
Try putting a Debug.Print in the code of every event procedure (identifying
the event), then open a code window and the Immediate window, then open the
form. You will have a neat list showing which events have fired.
 
Back
Top