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
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
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