Re: [Tutor] Tkinter GUI crashing problem

2012-04-06 Thread Steven D'Aprano
myles broomes wrote: Im working the Tkinter and I'm having a problem with the GUI I made. It crashes whenever I hit the submit button. Heres my code: Define "crashes". Does it: * cause your computer to Blue Screen of Death? * lock up your computer until you Ctrl-Alt-Delete? * cause Windows t

Re: [Tutor] Tkinter GUI crashing problem

2012-04-06 Thread Alan Gauld
On 06/04/12 23:07, myles broomes wrote: Im working the Tkinter and I'm having a problem with the GUI I made. > It crashes whenever I hit the submit button. Heres my code: What do you mean by crashes? It looks to me like it should lock up rather than crash. Your update_txt method goes into an

Re: [Tutor] Tkinter GUI crashing problem

2012-04-06 Thread Emile van Sebille
On 4/6/2012 3:07 PM myles broomes said... import random from tkinter import * What version of python on what platform please... Emile ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.org/m

[Tutor] Tkinter GUI crashing problem

2012-04-06 Thread myles broomes
Im working the Tkinter and I'm having a problem with the GUI I made. It crashes whenever I hit the submit button. Heres my code: #Guess my number 2.0 #The guess my number game but using a GUI import random from tkinter import * class Application(Frame): """GUI to hold widgets. ""