Re: [Tutor] tkinter question

2012-04-27 Thread Alan Gauld
On 27/04/12 05:08, Khalid Al-Ghamdi wrote: I've created this simple window with two widgets (a label and a button) the button is supposed to exit the root window, but the problem is it doesn't seem to, top=tkinter.Tk() ... tkinter.mainloop() try top.mainloop() I'm not sure

[Tutor] tkinter question

2012-04-26 Thread Khalid Al-Ghamdi
hi everyone, I'm usting python 3.2 on windows, and I'm doing these GUI exercises using tkinter. I've created this simple window with two widgets (a label and a button) the button is supposed to exit the root window, but the problem is it doesn't seem to, for some reason. It looks like it is

[Tutor] TKinter question

2006-03-21 Thread Christian Wood
To whom this may concern, Attatched is the source code, which demonstrates a problem I am having making a GUI for my python project work. Both files need to be in the same folder. My code writes to a text file 'table.txt', and 'table.txt' is displayed in

Re: [Tutor] TKinter question

2006-03-21 Thread Alan Gauld
My code writes to a text file 'table.txt', and 'table.txt' is displayed in the GUI. The user can generate new data at the click of a button which re-writes 'table.txt', but I can only add the new table to the GUI window rather than 'update' the existing one. class MoC: def __init__(self,

Re: [Tutor] TKinter Question

2005-11-08 Thread Michael Lange
On Tue, 08 Nov 2005 00:10:16 -0600 Rob Dowell [EMAIL PROTECTED] wrote: Just a quick TKinter question. Is it possible to have custom frames/widgets? In other words can I customize the way that the GUI looks (i.e. rounded corners on the frames, beveled/raised edges, etc.) I was just

[Tutor] TKinter Question

2005-11-08 Thread John Fouhy
On 08/11/05, Rob Dowell [EMAIL PROTECTED] wrote: Just a quick TKinter question. Is it possible to have custom frames/widgets? In other words can I customize the way that the GUI looks (i.e. rounded corners on the frames, beveled/raised edges, etc.) I was just wondering if it was possible and

Re: [Tutor] TKinter Question

2005-11-08 Thread Danny Yoo
On 08/11/05, Rob Dowell [EMAIL PROTECTED] wrote: Just a quick TKinter question. Is it possible to have custom frames/widgets? In other words can I customize the way that the GUI looks (i.e. rounded corners on the frames, beveled/raised edges, etc.) I was just wondering if it was

[Tutor] TKinter Question

2005-11-07 Thread Rob Dowell
Just a quick TKinter question. Is it possible to have custom frames/widgets? In other words can I customize the way that the GUI looks (i.e. rounded corners on the frames, beveled/raised edges, etc.) I was just wondering if it was possible and if it is possible then where I might get some