Skip to main content
Filter by
Sorted by
Tagged with
3 votes
1 answer
113 views

Why can I not show a TopLevel window after launching the FileDialog module? I would like to show a window with a waiting message after executing FileDialog code. If I create the TopLevel window before ...
Ric's user avatar
  • 31
1 vote
2 answers
285 views

Is it possible to create a Toplevel window in tkinter that is initially withdrawn without flashing. For example: import tkinter as tk root = tk.Tk() def dlg(): top = tk.Toplevel(root) top....
Patrick Kwok's user avatar
0 votes
1 answer
78 views

I am developing a Python Tkinter app which can open multiple instances of a toplevel window. The following extract tests if an instance of the toplevel class is running and if not, runs a new instance....
ADL's user avatar
  • 121
0 votes
1 answer
65 views

I have a button that opens a Toplevel window in a Python app. I open the window and the widget appears just fine, but if I close and reopen the Toplevel window with the same button, the window opens ...
Ryan Nackers's user avatar
1 vote
1 answer
2k views

I am running into an error on Vivado. I am trying to run implementation to program my Basys board, but I am running into the following error: [DRC MDRV-1] Multiple Driver Nets: Net ScrlFSM/RLC2B/DER1/...
Abdur-Rahman Igram's user avatar
0 votes
2 answers
585 views

I am using a top level widget in customtkinter to show an error, but the top level widget goes below the main widget so the user doesn't end up noticing the error. How can I make the top level widget ...
Shubhwins's user avatar
0 votes
1 answer
75 views

I made a function in python import tkinter as tk import re from tkinter import filedialog from tkinter import messagebox import theFile.fileCentral as fc import theData.workers as workerData import ...
Lars's user avatar
  • 3
0 votes
1 answer
72 views

I'm having trouble when closing and opening new windows in python. The new window is always offset from the old window. As I'm using a small display for the project I need the position of the new ...
Greg W's user avatar
  • 53
0 votes
1 answer
821 views

Currently, whenever I create a new window in a Tkinter program, I use a function with Toplevel(), including .mainloop(), like this: def MainWindow(): root = Tk() #A button that calls SubWindow(...
mwolfe 11's user avatar
  • 171
1 vote
1 answer
161 views

I am creating a toplevel: #Loading screen main = Tk() loading = Toplevel() loading.title("Co-worker") loading.iconbitmap(getcwd()+"/icons/appIcons/windowIcon.ico") loading....
hfaulkner's user avatar
0 votes
1 answer
39 views

I have a GUI application written in tkiner. I have a main welcome window that should take me to another window, and when it does I would like the welcome window to be Hidden, but still have the option ...
cheye's user avatar
  • 1
-1 votes
1 answer
434 views

I want to make a program with a setup but if the user is clicking in the fullscreen window while the second window is on the screen the second window goes in the back of the fullscreen window and the ...
D4R1U5's user avatar
  • 1
0 votes
1 answer
112 views

I have the following code where there's a rectangle drawn on a canvas. The rectangle is where I want it to be. I want the rectangle as a border for the toplevel window. How do I make the toplevel ...
Chat0924's user avatar
0 votes
2 answers
371 views

I'm learning for my Tkinter Exam Tomorrow and I don't know why but when I'm trying to create a TopLevel in a new function, I'm getting this Error Message Exception in Tkinter callback Traceback (most ...
Leon Kannenberg's user avatar
0 votes
2 answers
102 views

I have this bit of code def choosesize(): global textsize window2 = Toplevel() label = Label(window2, text='Type the size you want for the text') label.pack() ...
ThisNameTagPasses's user avatar
0 votes
1 answer
46 views

I'm working on a project that I hope will be used for flashcards, but I've encountered a problem with TopLevel(). When I run this code, it works exactly how I want it to, except when I click the ...
Shonky's user avatar
  • 5
0 votes
1 answer
101 views

I'm somewhat new to python (started in Nov.) and after complete my first "program" I'm trying to built the GUI using Tkinter. I want to put the program on a Toplevel that I've created and ...
infernofire256's user avatar
-1 votes
2 answers
108 views

I want to access the main window attributes and change some of its labels and button's states in my toplevel class however it can not find them. So I'm not sure how to use opp approach in tkinter and ...
mmd-ghamgosar's user avatar
1 vote
1 answer
943 views

I'm creating a Chrome Web Extension, which uses the chrome.webRequest API to intercept and alter HTTPS requests. Within their documentation, Google talk about different request types. One of these ...
Connor's user avatar
  • 1,146
-1 votes
1 answer
80 views

I added a top level in my tkinter GUI but I added a button which runs a deep learning model and is supposed to display the result in a separate label; however, when I run the code it says the top ...
Haamed Rahman's user avatar
-1 votes
1 answer
352 views

I'm working on a project in Tkinter. Entries work perfectly fine for me, but as soon as I create an entry inside a top level window, I can neither insert any text, nor retrieve any input of the ...
Lion In A Box's user avatar
0 votes
1 answer
1k views

How can I create a binding in tkinter for when someone closes a toplevel window or if it is closed with toplevel1.destroy() or something similar. I am trying to make a small pop-up and when the user ...
TRCK's user avatar
  • 213
0 votes
1 answer
615 views

I'm trying to use the grid() layout manager to apply to a Toplevel window that successfully opens, but I can only get pack() to work. It seems that using the grid(row=x, column=y) isn't working - what ...
Tommo's user avatar
  • 35
0 votes
1 answer
86 views

I am working with a resized image in a button and that button is in a toplevel widget set up as a root widget. The problem is that the image will not load; code: def opendl(): global installpin2 # dl =...
user avatar
0 votes
0 answers
140 views

I am building custom Tkinter dialog window with Entry and Combobox. I am stuck with placing text and enter frames. Currently I am placing them manually. I am looking for the way to let tkinter do it ...
Dmitry Uspenskiy's user avatar

1
2 3 4 5 6