On 03/04/2012 06:59 AM, myles broomes wrote:
Im trying to code a simple GUI but I'm having a bit of a problem. Heres my
code: from tkinter import *class Application(Frame):
def __init__(self,master=None):
Frame.__init__(self,master)
self.grid(sticky=N+S
> Im trying to code a simple GUI but I'm having a bit of a problem. Heres my
> code:
>
> from tkinter import *
> class Application(Frame):
> def __init__(self,master=None):
> Frame.__init__(self,master)
> self.grid(sticky=N+S+E+W)
> self.cr
Im trying to code a simple GUI but I'm having a bit of a problem. Heres my
code: from tkinter import *class Application(Frame):
def __init__(self,master=None):
Frame.__init__(self,master)
self.grid(sticky=N+S+E+W)
self.createWidgets()