Re: [Tutor] Mulltiple TK frames

2007-02-14 Thread ALAN GAULD
> > So he does document these but not in his standard > > Tkinter tutorial and not in the standard module documentation > > It is in Fredrik Lundh's Introduction to Tkinter: > http://www.pythonware.com/library/tkinter/introduction/standard-dialogs.htm I thought it should be, but couldn't see the

Re: [Tutor] Mulltiple TK frames

2007-02-14 Thread Kent Johnson
Alan Gauld wrote: > Here is another reference to the standard dialogs: > > http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/438123 > > And to correct my previous comment, the link I posted was > by Fred Lundh and opening the tkFileDioalog moduler we > discover that he was in fact the aut

Re: [Tutor] Mulltiple TK frames

2007-02-14 Thread Alan Gauld
Here is another reference to the standard dialogs: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/438123 And to correct my previous comment, the link I posted was by Fred Lundh and opening the tkFileDioalog moduler we discover that he was in fact the author of the code! So he does doc

Re: [Tutor] Mulltiple TK frames

2007-02-14 Thread Alan Gauld
"Hazlett, Les" <[EMAIL PROTECTED]> wrote > No doubt the widow vs. frame terminology is simpe A Window is a GUI concept, it is the thing with the iconify/delete buttons and title bar. A Frame is literally a container for other widgets. Its conventional to create your Windows with a Frame as the to

Re: [Tutor] Mulltiple TK frames

2007-02-14 Thread Kent Johnson
Hazlett, Les wrote: > I would love to see a simple sample that uses multiple "userforms". You might want to look at EasyGui. I don't think it will do exactly what you want but it has many examples of how to put up simple dialogs. http://www.ferg.org/easygui/ Kent __

[Tutor] Mulltiple TK frames

2007-02-14 Thread Hazlett, Les
Thank you Alan and John, No doubt the widow vs. frame terminology is simpe "once you understand it". But I am still confused. John used the labels "Main Window" and "Other Window" and Alan said you normally have many frames inside a single window. Knowing that I am still confused by the windo