Re: Tkinter: Dynamic entry widget

2006-04-25 Thread Fredrik Lundh
"Arne" wrote: > I want to create entry widgets dynamically. > var = ["one", "two", "three"] > i=0 > for x in var: > textbox = "t_", x > textbox = entry(frame) > textbox.grid(row=4+i, column=0) > i = i + 1 > This works ok. On the window are the entries like I want. > > When I want t

Tkinter: Dynamic entry widget

2006-04-25 Thread Arne
Hello ! I want to create entry widgets dynamically. var = ["one", "two", "three"] i=0 for x in var: textbox = "t_", x textbox = entry(frame) textbox.grid(row=4+i, column=0) i = i + 1 This works ok. On the window are the entries like I want. When I want to get to entered data from