form open chain of events

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.
 
L

Larry Linson

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.
 
Top