Posts by Jose Correia Lins Neto • 21 points
3 posts
-
0
votes1
answer140
viewsA: Interaction with Tkinter Checkbutton widgets in python3
I managed to find the solution, below: from Tkinter import * master = Tk() def marks all(): overall state, stage 2 if state.get() > 0: check02.select() check03.select() Else: check02.deselect()…
-
-1
votes1
answer140
viewsQ: Interaction with Tkinter Checkbutton widgets in python3
I am creating a system in python3 using the Tkinter library, I need that when checking the Checkbutton widget "Mark All" the others are marked and when unchecking, the others are unchecked. follows…
-
2
votes1
answer983
viewsQ: Python + Tkinter Screen Management
I’m creating a system with a few screens, Every time I click on the button to call the screen it creates a new instance of the same screen, so if the user keeps clicking on the same button several…