|
From: Friedrich R. <fri...@gm...> - 2010-06-18 12:52:38
|
2010/6/15 Eliot Glairon <ej...@ya...>: > class simpleapp_tk(Tkinter.Tk):#initialize > def __init__(self,parent): > Tkinter.Tk.__init__(self,parent) > self.grid() It sounds a bit odd to me to attemt to .grid() a Tk instance ... The Tkinter.Tk() instance is the toplevel application window. You do not have to grid it. Also, I don't know what the *parent* argument means to to Tkinter.Tk.__init__(). Try to leave the parent argument alone, and try to remove the .grid(). Friedrich |