Posts by L.Gabriel • 3 points
5 posts
-
-2
votes1
answer95
viewsQ: How to make Progressbar in Kinter?
Hello, I wanted to make a progression in Kinter that when it came to the end it would stop, the progress of the progressibar would be activated by a button, but when the button is activated, the…
-
-4
votes1
answer31
viewsQ: Hi, I’d like to do a Progressbar with Tkinter, can you help me?
I wanted that when I pressed the button it started and when I arrived at the end disappeared, but neither the bar nor the button appear in the window created, it does not trigger an error on the…
-
0
votes3
answers238
viewsQ: Update label every time you click a button
I’m using the Tkinter library for the program interface, so on the screen I would have a label that starts with your text represented by a variable of value '10', so at the click of a button, I…
-
0
votes1
answer231
viewsQ: I can only open png images with Tkinter
I’m trying to open up images jpeg with Tkinter using the PhotoImage, but I can’t. The program and image are in the same folder, but still it gives error: couldn’t open "image.jpeg": no such file or…
-
0
votes1
answer104
viewsQ: How do I add an image to a python script using Tkinter
I’m trying to add an image to a program with the following code: from tkinter import * root = Tk() imagem = PhotoImage(file="imagem") lb = Label(root, imagem=imagem) lb.place(x = 0, y = 20)…