To clarify this, you need to call the super's constructor in your subclass constructor for a window to properly initialize (super.window). You want to put your initialization code BEFORE calling the window's constructor because the the window's constructor triggers the open events. Also you can't (well at least shouldn't, it may work in some cases but it's a bad idea) access any of the controls before calling the window's constructor.
On 4/22/06, Norman Palardy <[EMAIL PROTECTED]> wrote: > > No, nd if you find you MUST have a specific order then try adding a > constructor to your window > The constructor happens before the Open events for all controls but > after they all exist _______________________________________________ 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>
