Ed: I took out all of the "open a form in the main form" code in myapp.py and we still get the statusbar showing up when no form is opened at startup.
Jeff Johnson wrote: > Ed: It is the form that is opened in myapp.py main program as the > default window. This is the only time it shows the status bar. I will > try what you mention here and see if it corrects the problem. > > Thanks, > > Ed Leafe wrote: >> On Sep 21, 2009, at 1:55 PM, Jeff Johnson wrote: >> >>> Ed: Is there a way to instantiate a form without showing it? >> >> By default, forms are not shown when instantiated; try this: open a >> command window, and type: >> >> frm = dabo.ui.dForm(self, Caption="Where am I?") >> >> Nothing visible will happen. Then type: >> >> frm.show() >> >> ... and you'll see the form. The same is true of cdxml-based forms. >> How are you creating the form in question? >> >> >> -- Ed Leafe -- Jeff Jeff Johnson [email protected] Phoenix Python User Group - [email protected] _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[email protected]
