04-05-2010, 02:41 PM
(02-26-2010, 10:15 PM)uber1337 Wrote: Hmm that's a good idea.
The only thing I don't quite understand is this:
Oh and btw, the way you "refreshed" your GUI, is that wxPython only or can Tkinter do the same thing:Code:def EVT_RELOAD(win,func):
win.Connect(-1,-1,111,func)
Code:class RELOAD(wx.PyEvent):
def __init__(self, data):
wx.PyEvent.__init__(self)
self.SetEventType(111)
self.data = data
yea thats how the custom wxpython event is handled, its pretty confusing but i found a tutorial on it and thats what fixxed (some) of my problems. and im not 100% sure on tkinter, i've only made a few GUIs in the past with it for practice