On Apr 22, 2006, at 5:50 PM, Charles Ross wrote:
Is it documented some place what order events are called in when a Window is created? For instance, I had put some code into the Open event of the Window, as well as the Open event of a number of controls within the Window, and I found out that apparently the controls' Open events are called before the Window's Open event. I move the code in Window.Open to Window.Activate, and it worked, so apparently Window.Activate is called before the controls.Open. Is this precise order documented somewhere?
The order is mostly intentionally undocumented. You're better off writing code that does not depend on the order of events.
Charles Yeomans _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
