Toplevel windows for all matching entries, tkinter Programming Software Development by JoshuaBurleson … to show what I'm talking about. show() makes the toplevel windows. Also, not that it has so much going on… Toplevel Child Window example (Tkinter/Python) Programming Software Development by vegaseat A closer look at the Tkinter GUI toolkit Toplevel Window and how to lift and lower it respective to other windows. Issues with a third tier Toplevel, tkinter Programming Software Development by JoshuaBurleson …clientchooser(self): showing.withdraw() client_choose() def client_choose(): global client client=Toplevel() client.title=('Choose Email') client.geometry=('800x600') Client(client) …hand for me is the fact that the third level toplevel is opening WAY too small and the title doesn'… Re: Tkinter Toplevel Issue Programming Software Development by cnuzzo …quot;" print "Top Frame" self.top = Toplevel() self.top.title("Top Window") self.top_frame =…. When that button is pressed, it launches a toplevel window that is where I want the user to… that are loaded into the bottom frame of the toplevel window. Vegaseat, I really appreciate the help. Tell… Tkinter Toplevel Issue Programming Software Development by cnuzzo … am trying to create a basic template GUI for a Toplevel Frame with multiple frames inside of it. I ran into…;] = self.top_window self.bttn1.grid() def top_window(self): self.top = Toplevel() self.top.title("Add Food to Log") self… Re: Tkinter Toplevel Issue Programming Software Development by cnuzzo … is suppose to clear the second frame created in the toplevel window. However the button stays when the it is clicked… be called to the correct frame class inside of the toplevel window that is suppose to contain to frames. Can someone… Re: Toplevel windows for all matching entries, tkinter Programming Software Development by JoshuaBurleson print(count) was just for me to see if other things were working correctly. Also, once Interface.result and Interface.url are set by the first then it stay the same for the second. Re: Toplevel windows for all matching entries, tkinter Programming Software Development by JoshuaBurleson something like this seems to be working. It was smarter to use a dictionary. Don't know why I didn't think of it before, I guess sometimes you can get stuck in one way of thinking about a solution. Sometimes, especially in programming it seems, one must think outside of their own self-defined box. It looks MUCH better too.[CODE] def searchfor(… Re: Toplevel windows for all matching entries, tkinter Programming Software Development by JoshuaBurleson however, as is this only works if there is more than one contact by the same name. Ohhh darn... Re: Toplevel windows for all matching entries, tkinter Programming Software Development by JoshuaBurleson and the resolution to that issue. Sorry to keep everybody so updated,[CODE] def searchfor(self): query=self.search.get().capitalize() self.search.delete(0,END) self.dict1={} for key in ab.book.keys(): if query[0:2]==key[0:2]: query=key dict2={query:ab.book[query]}… Re: Toplevel windows for all matching entries, tkinter Programming Software Development by TrustyTony Check it out, what is ab? It is one global instance of Addressbook? Which class searchfor belongs, isn't it Adressbook class? Shouldn't you refer the class instance as self (again), not ab? Re: Toplevel windows for all matching entries, tkinter Programming Software Development by JoshuaBurleson searchfor is in the Interface class. Re: Toplevel windows for all matching entries, tkinter Programming Software Development by TrustyTony Then Interface result shoud be self.result and probably ab should be self.ab. Re: Issues with a third tier Toplevel, tkinter Programming Software Development by JoshuaBurleson found it, I had client.title#and geometry#=() but it's just client.title() I suppose now on to having a better way to do email, is there one? Re: Issues with a third tier Toplevel, tkinter Programming Software Development by TrustyTony [url]http://docs.python.org/library/email-examples.html[/url] Re: Issues with a third tier Toplevel, tkinter Programming Software Development by JoshuaBurleson I've tried that a few times and gotten socket errors for local host. Also does the From: field need to be a valid email address? Re: Issues with a third tier Toplevel, tkinter Programming Software Development by TrustyTony I think your computer has not smtp server running but you must put in your Internet Service providers SMTP server information. From field could probably be faked, but replies would not arrive OK. Like some companies or mailing lists no_reply.... Email addresses. I try to take the code and let it transmit itself to you now that I dig up some stuff … Re: Issues with a third tier Toplevel, tkinter Programming Software Development by JoshuaBurleson I got it, wow, that worked well from you. Let's see if I can do that. How would I find my ISP's SMTP server info? Re: Issues with a third tier Toplevel, tkinter Programming Software Development by TrustyTony See the code snippet I posted. There was some issue with bytes trying to send the code of the program from Python3, so in snippet there is only simple built in string sent instead. Subject is left incorrectly sam as in message I sent to you. The program has the information how to use gmails SMTP, not ISP specific one. Re: Tkinter Toplevel Issue Programming Software Development by vegaseat Can you boil that down to just the minimum code required to do what you want to do? Re: Tkinter Toplevel Issue Programming Software Development by bvdet cnuzzo, I don't want to rework your code to make it work. Instead, I will give you an example that I think you can apply to your situation in a similar way. I will only create one top level window however. It works like this: [LIST=1] Create the top level frame Establish criteria for the frames you intend to switch Create your frames … Re: Tkinter Toplevel Issue Programming Software Development by cnuzzo So with the MakeFrame class in the first example, what do I do if I have frames with different widget configurations? Do I make several classes and then add each instance of those classes to my dictionary before calling any frames? Re: Tkinter Toplevel Issue Programming Software Development by bvdet [QUOTE=cnuzzo;1139768]So with the MakeFrame class in the first example, what do I do if I have frames with different widget configurations? Do I make several classes and then add each instance of those classes to my dictionary before calling any frames?[/QUOTE] You don't have to do it that way. Instead of a loop, you can create the frames linearly … Re: Tkinter Toplevel Issue Programming Software Development by cnuzzo Thank you for you help. rowindal.d torjan Hardware and Software Information Security by killza …of changing update WUClient-SelfUpdate-Aux-zh-tw-LP-Toplevel from package KBWUClient-SelfUpdate-Aux(Feature Pack) into… changing update WUClient-SelfUpdate-Aux-zh-hk-LP-Toplevel from package KBWUClient-SelfUpdate-Aux(Feature Pack) into… changing update WUClient-SelfUpdate-Aux-zh-cn-LP-Toplevel from package KBWUClient-SelfUpdate-Aux(Feature Pack) into… My laptop can't detect my wireless modem Hardware and Software Information Security by foxkueh … Based Servicing\ApplicabilityEvaluationCache\Microsoft-Windows-AutomationAPI-Package-TopLevel~31bf3856ad364e35~x86~~6.0.6002.18156 Reg … Based Servicing\ApplicabilityEvaluationCache\Microsoft-Windows-DGT-Package-TopLevel~31bf3856ad364e35~x86~~7.0.6002.18107 Reg … help with tkinter/sql login Programming Software Development by kiddo39 …from Tkinter import * import sys import MySQLdb # Toplevel window that opens when "NEXT" button …quot;NextWindow" widget def NewWindow(): win = Toplevel() # entry boxes put in a frame, text … 'SaveThis' and executes sql command. 'Next' opens toplevel Button(win, text="Save",command=SaveThis).pack(… Can't open a Modal (showdialog) form Programming Software Development by elmbrook …call myModalForm. I have tried: myModalForm myform = new myModalForm (); myform.TopLevel = true; myform.MdiParent = this.mdiparent; myform.ShowDialog(); Result: '…// Create new instance of MainForm myModalForm myform = new myModalForm (); topform.TopLevel = true; myform.MdiParent = topform; myform.ShowDialog(); Result: 'Form that… Dynamically update label text python Tk Programming Software Development by davidbr …=12,column=2) def gotoPag01(self): root1=Toplevel(self.master) myGui=Pag01(root1) def gotoPag02(self): …master) myGui=Pag04(root4) def gotoPag05(self): root5=Toplevel(self.master) myGui=Pag05(root5) def exit(self):… Re: Tkinter canvas background image Programming Software Development by matkod …class Janela: def __init__(self, toplevel): toplevel.resizable(width=False, height=False) toplevel.title('Calculadora CafĂ©Mania v1 (….bind_all("<F1>", self.help) toplevel.geometry("%dx%d+0+0" % …(w, h)) self.painel = tk.Canvas(toplevel, width=w, height=h) self.painel.pack(side…