On Tuesday, January 14, 2014 4:56:42 PM UTC+1, cassiope wrote:
> On Tue, 14 Jan 2014 07:26:10 -0800, ngangsia akumbo wrote:
> Not sure whether your wx version might have a 'Mainloop'.
I think is ok now thanks
--
https://mail.python.org/mailman/listinfo/python-list
On Tue, 14 Jan 2014 07:26:10 -0800, ngangsia akumbo wrote:
> When i run this code on my pc it actually runs but signals that the app is
> not responding.
[snip most of the code]-
> def main():
> ex = wx.App()
> Example(None)
> ex.Mainloop()
>
>
> if __name__ == "__main__":
> m
When i run this code on my pc it actually runs but signals that the app is not
responding.
import wx
class Example(wx.Frame):
def __init__(self, *args, **kwargs):
super(Example, self).__init__(*args, **kwargs)
self.InitUI()