My problem at the moment is I am trying to change a label(label 16) to the first value of entry_values[0] which isn't working I have tried passing it in as a variable and many othe
Solution 1:
In order to change the text of a label you can do:
label["text"] = textVar
or
label.config(text=textVar)
So in your above code, when the entry changes, reconfigure the label using one of the above options.
Share
Post a Comment
for "Change Label Values When An Entry Value Is Changed"
Post a Comment for "Change Label Values When An Entry Value Is Changed"