python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Why tkinter multiple window GUI not working properly?
I am creating multiple window GUI using tkinter.
I did not receive any errors. First window runs successfully but when I clicked the button the second window doesn't run.
I don't understand where ther...
Abhishek Gupta
Votes: 0
Answers: 1
Remove whole Entry row (5 boxes) in tkinter
I have button and a function which creates 5 Entry boxes in newline every time you click it
def __init__(self, master):
[...]
self.rows_list = 2
self.new_button = ttk.Button(self.tab1, tex...
gipcu
Votes: 0
Answers: 1
How to read the text below the mouse when clicking on a tkinter Text widget and paste it in an Entry widget?
I am writing a program that pulls data from a server. Initially, the program asks the server to print the data available for a specific day. The output on the Text widget is shown in the for loop:
def...
AndreaPython
Votes: 0
Answers: 1
How to check the type of tkinter-widget-objects
I wanna create a simple GUI for a research project.
For this I have plenty of widgets and I want to check what their type is.
Lets take the entry-widget as an example. I have entries, which look like ...
Tybald
Votes: 0
Answers: 1