Python Forum
[Tkinter] Having trouble updating the text in a label
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] Having trouble updating the text in a label
#4
(May-01-2019, 07:50 PM)Larz60+ Wrote: which label (to use as example)? you have many

Its seems to be working now, I was refering to the previous post (above) that was was attempting update the text in a label, this was done in the update method of the Appllication class.

self.lblpower.text = "any text value"
Instead I found I could achieve the goal by using the config method:
self.lblpower.config(text=caption_pwr)

(May-01-2019, 11:24 PM)Yoriz Wrote: You can also treat the option name like a dictionary index
self.lblpower['text']=caption_pwr
Ref
https://docs.python.org/3/library/tkinte...-reference
https://docs.python.org/3/library/tkinte...el-options
or widget variables
https://docs.python.org/3/library/tkinte...-variables

Thanks for the web links Smile , the handy reference looks more like my cup of tea.
Reply


Messages In This Thread
RE: Having trouble updating the text in a label - by microphone_head - May-02-2019, 08:44 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [Tkinter] Updating tkinter text BliepMonster 5 6,238 Nov-28-2022, 01:42 AM
Last Post: deanhystad
  [Tkinter] Updating Tkinter label using multiprocessing Agusms 6 3,247 Aug-15-2022, 07:10 PM
Last Post: menator01
  [Tkinter] The Text in the Label widget Tkinter cuts off the Long text in the view malmustafa 4 5,092 Jun-26-2022, 06:26 PM
Last Post: menator01
  Updating button text based upon different variable values knoxvilles_joker 0 2,265 Apr-18-2021, 04:13 AM
Last Post: knoxvilles_joker
  update text variable on label with keypress knoxvilles_joker 3 5,000 Apr-17-2021, 11:21 PM
Last Post: knoxvilles_joker
  How to read text in kivy textinput or Label jadel440 1 5,343 Dec-29-2020, 10:47 AM
Last Post: joe_momma
  [Kivy] Kivy text label won't shows up! AVD_01 1 2,971 Jun-21-2020, 04:01 PM
Last Post: AVD_01
  [Tkinter] Python 3 change label text gw1500se 6 4,771 May-08-2020, 05:47 PM
Last Post: deanhystad
  [Tkinter] how to update label text from list Roshan 8 5,524 Apr-25-2020, 08:04 AM
Last Post: Roshan
  [PyQt] Python PyQt5 - Change label text dynamically based on user Input ppel123 1 13,830 Mar-20-2020, 07:21 AM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020