Just take away the w.show, because that sets the windows visible property to true;
> Dim w as new TextWindow > w.visible = false Is all you need. It should call the open event and initialize the window. For your second problem, don't use .show here as well. Just do textwindow.visible = false Textwindow.close Whenever you use textwindow.anything it will initialize the window. -- Paul Levine Find Reliable Beta Testers http://www.trybeta.com > > (See also the thread (todays) Caching fonts for better performance > Here is problem no 1 (in the App Open Event): > > // > Dim w as new TextWindow > w.visible = false > w.show > // > _______________________________________________ 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>
