Re: [Tkinter-discuss] Problem with grid layout

2009-01-05 Thread Guilherme Polo
On Mon, Jan 5, 2009 at 9:09 AM, pellegrini wrote: > Hello everybody, > > I have a problem with the grid management. > > Here is the following simple script: > > ## > from Tkinter import * > root = Tk() > f = Frame(root) > f.grid(r

[Tkinter-discuss] Problem with grid layout

2009-01-05 Thread pellegrini
Hello everybody, I have a problem with the grid management. Here is the following simple script: ## from Tkinter import * root = Tk() f = Frame(root) f.grid(row = 0, column = 0, sticky = W) f1 = Frame(f, relief = GROOVE, bd =

[Tkinter-discuss] Problem with grid layout

2009-01-05 Thread pellegrini
Hello everybody, I have a problem with the grid management. Here is the following simple script: ## from Tkinter import * root = Tk() f = Frame(root) f.grid(row = 0, column = 0, sticky = W) f1 = Frame(f, relief = GROOVE, bd =