Re: [Tutor] Wizards in Tkinter

2005-05-24 Thread Alan G
Your mail came as an attachment so no quoted text, but basically there are two approaches to your problem of a Wizard. In Tkinter you normally use a Frame as your main window. You can pack another Frame inside that frame with your content. When you press next simply unpack frame 1 and pack frame

Re: [Tutor] Wizards in Tkinter

2005-05-24 Thread jfouhy
Quoting William O'Higgins <[EMAIL PROTECTED]>: > I am writing a small application that takes a user through a set of > steps - like a wizard. What I need is an idea how I can start with a > window, have the use click "Next" and get another window. My > understanding is that it is undesirable to ha

[Tutor] Wizards in Tkinter

2005-05-24 Thread William O'Higgins
I am writing a small application that takes a user through a set of steps - like a wizard. What I need is an idea how I can start with a window, have the use click "Next" and get another window. My understanding is that it is undesirable to have more than one mainloop per program. Thanks. -- y