When I am running my application I click a button which sets  
   window.visible to true.  Then I enter information on this window in  
   some edit fields.....I have a button on the window that when click  
        ...

Unless something has changed recently, this is the wrong approach.
The Visible property is defined to control whether the window is
initially visible when the application starts: it is not meaningful to
change it at run time.  (And, I'm not sure why it is writable at all...)

Use the Show and Hide methods (or whatever they are) to make a window
visible/not visible.

That said, I've found them to not work the best on Windows (the
operating system).  So, I use Close when I want a window to go away.
You do need to save all the per-window data and re-load it when you
next want to use the window.

Craig
_______________________________________________
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>

Reply via email to