Re: Error: unbound method in Tkinter class

2006-12-09 Thread Bjoern Schliessmann
Kevin Walzer wrote: > I am trying to structure a Tkinter application with classes > instead of just with simple functions, but I'm not sure how to > call methods from my main class. > > My main class is packetstreamApp(). I don't think so -- packetstreamApp() would be an (unbound) instance. pack

Re: Error: unbound method in Tkinter class

2006-12-09 Thread Peter Otten
Kevin Walzer wrote: > I am trying to structure a Tkinter application with classes instead of > just with simple functions, but I'm not sure how to call methods from my > main class. > > My main class is packetstreamApp(). Within that class I call various > methods, including drawGUI() and authori

Error: unbound method in Tkinter class

2006-12-09 Thread Kevin Walzer
I am trying to structure a Tkinter application with classes instead of just with simple functions, but I'm not sure how to call methods from my main class. My main class is packetstreamApp(). Within that class I call various methods, including drawGUI() and authorizeDump(). My problem comes when I