Python Forum
[Tkinter] Update value in Entry widget
Thread Rating:
  • 2 Vote(s) - 2.5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] Update value in Entry widget
#5
(Mar-31-2017, 04:38 PM)Barrowman Wrote: A metulburr said you code is updating so fast the eye cannot register the changes so you only see the last one.
If you import time and changed your example code to this 
def start():
    for n in range(1000000):
        if n%100000 == 0:
            v.set(str(n))
            time.sleep(0.5)
you would see the values changing.

But because of it being tkinter you cant use time sleep on any GUI as it blocks the execution, you have to use after
Recommended Tutorials:
Reply


Messages In This Thread
Update value in Entry widget - by dannyH - Mar-25-2017, 11:18 PM
RE: Update value in Entry widget - by metulburr - Mar-26-2017, 12:13 AM
RE: Update value in Entry widget - by dannyH - Mar-26-2017, 07:05 AM
RE: Update value in Entry widget - by Barrowman - Mar-31-2017, 04:38 PM
RE: Update value in Entry widget - by metulburr - Mar-31-2017, 05:22 PM
RE: Update value in Entry widget - by dannyH - Mar-31-2017, 09:54 PM
RE: Update value in Entry widget - by wuf - Apr-01-2017, 06:03 PM
RE: Update value in Entry widget - by dannyH - Apr-02-2017, 10:12 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  ValueError: could not convert string to float: '' fron Entry Widget russellm44 5 1,357 Mar-06-2024, 08:42 PM
Last Post: russellm44
  [Tkinter] entry widget DPaul 5 1,860 Jul-28-2023, 02:31 PM
Last Post: deanhystad
  How to instantly update the plot by getting values from a Scale widget? OLE 20 7,092 May-18-2022, 02:35 AM
Last Post: OLE
  Tkinter Exit Code based on Entry Widget Nu2Python 6 3,387 Oct-21-2021, 03:01 PM
Last Post: Nu2Python
  [Tkinter] Update variable using tkinter entry methon drSlump 6 5,617 Oct-15-2021, 08:01 AM
Last Post: drSlump
  method to add entries in multi columns entry frames in self widget sudeshna24 2 2,464 Feb-19-2021, 05:24 PM
Last Post: BashBedlam
  Entry Widget issue PA3040 16 7,424 Jan-20-2021, 02:21 PM
Last Post: pitterbrayn
  [Tkinter] password with Entry widget TAREKYANGUI 9 6,617 Sep-24-2020, 05:27 PM
Last Post: TAREKYANGUI
  [Tkinter] Get the last entry in my text widget Pedroski55 3 6,763 Jul-13-2020, 10:34 PM
Last Post: Pedroski55
  How to retreive the grid location of an Entry widget kenwatts275 7 5,056 Apr-24-2020, 11:39 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

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