Replies: 1 comment
-
Do you want to move the progress bar slowly over time? Why do you want to use |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
def StartProgress():
for i in range(5):
progress_var['value'] += 20
stringvar.set(progress_var['value'])
# get the value
label.config(text=stringvar.get()+' %')
# update value
gui.update_idletasks()
time.sleep(1)
Beta Was this translation helpful? Give feedback.
All reactions