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