event procedure order

G

Garret

Hello,
I've been trying to find out for quite sometime without success the
order that event procedures fire off. Particularly the events that
fire off when you exit out of a form, so I can deal with saving. If
anyone knows I would greatly appreciate it, even if they can point me
to any links.
 
W

Wayne Morgan

If you want to confirm it for yourself, add a message box or a debug.print
to each procedure and see what order the message boxes popup or the lines
appear in the immediate window.

Example:
MsgBox "Close Event"
or
Debug.Print "Close Event"

change the text string to match the name of the event that it is located in.
 
Top