Hello I have a several problems with using tkinter, if anybody can help, it would be great :D
I'm using a .grid method on my widgets. When I put sth (e.g.Label) in for example row=5, and want to put something different (label with other text)in row=5 it overlap one another ;/ I don't know how to make invisible previous label. And .destroy() method doesn't want work;/
Another problem:
def show():
i=0
wpisy = (here is some text, read from file)
[B]wartosc[/B]=Text(root, relief=SOLID,bd=0,fg="#7b6262", height=20, width=65, font=("Arial", 9, "normal"))
wartosc.grid(row=2,columnspan=3)
wartosc.insert(END, wpisy)
When some button activate show() function, text appear in Text widget, but when I put some another text (via Entry/button widget -> function which put it there) and activate show() once again, new text doesn't appear in wartosc. It can't be refreshed or sth ?
Plz help:)