WXPYTHON push button call a frame

Steve Holden steve at holdenweb.com
Thu Jul 5 08:51:22 EDT 2007


Marcpp wrote:
> Hi I need to call a widget from a button in WXPYTHON. I've tried to
> this from a function like this, but when push the button, the program
> opens a window and do error.
> Any idea?
> 
Well, one *really* good idea would be to copy the error message and 
paste it into your message. The readers of this list have amazing 
psychic powers, but you can always help improve the answer quality by 
providing relevant information.

> .....
>     def DialogRRHH(self,event):
>         prog = wx.PySimpleApp(0)
>         wx.InitAllImageHandlers()
>         DialogRRHH = MTRRHH(None, -1, "")
>         prog.SetTopWindow(DialogRRHH)
>         DialogRRHH.Show()
>         prog.MainLoop()
> 
> class MTRRHH(wx.Frame):
> .......
> if __name__ == "__main__":
>     app = wx.PySimpleApp(0)
>     wx.InitAllImageHandlers()
>     tasques = tasques(None, -1, "")
>     app.SetTopWindow(tasques)
>     tasques.Show()
>     app.MainLoop()
> 
Unfortunately your code extracts don't tell us what's going wrong, only 
how the program is constructed. While that *is* useful information, by 
itself it only paints half the picture.

regards
  Steve
-- 
Steve Holden        +1 571 484 6266   +1 800 494 3119
Holden Web LLC/Ltd           http://www.holdenweb.com
Skype: holdenweb      http://del.icio.us/steve.holden
--------------- Asciimercial ------------------
Get on the web: Blog, lens and tag the Internet
Many services currently offer free registration
----------- Thank You for Reading -------------




More information about the Python-list mailing list