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

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__(sel

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 w

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 won