Re: [Tutor] Simple GUI

2012-03-04 Thread Dave Angel
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

Re: [Tutor] Simple GUI

2012-03-04 Thread Evert Rol
> 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

[Tutor] Simple GUI

2012-03-04 Thread myles broomes
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()