Re: [Boa Constr] BOA debugger fails in a wxPython application
Status: Beta
Brought to you by:
riaan
From: Riaan B. <riaan@e.co.za> - 2002-05-30 13:36:33
|
Hello Geza, Geza Groma wrote: > > I found that if a wxPython application runs in the BOA debugger mode > the mainframe does not show up. Several weeks ago a similar problem was > posted in this list claming that it takes place only on Win9x/ME and not > in real multitasking Windows. In contrast to that I found the problem to > appear both on NT and XP machines using Python2.2.1, wxPython-2.3.3pre3 > and BOA from the latest CVS. > > Is that a bug or do I make something wrong? To work in the Debugger you have to Show, Hide and Show the main frame of your application before it will display. e.g. if __name__ == '__main__': app = wxPySimpleApp() frame = create(None) frame.Show();frame.Hide();frame.Show() app.MainLoop() Also, there is currently an issue with wxPython-2.3.3pre3 where the Inspector does not respond to mouse clicks. HTH, Riaan. > > -- > Géza Groma > Institute of Biophysics, > Biological Research Center of Hungarian Academy of Sciences > Temesvári krt.62. > 6726 Szeged > Hungary > phone: +36 62 432 232 > fax: +36 62 433 133 > > _______________________________________________________________ > > Don't miss the 2002 Sprint PCS Application Developer's Conference > August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm > > _______________________________________________ > Boa-constructor-users mailing list > Boa...@li... > https://lists.sourceforge.net/lists/listinfo/boa-constructor-users |