Re: Tkinter new window contentent when button is clicked.

2021-02-28 Thread Bischoop
On 2021-02-25, MRAB wrote: >> > The trick is to put the "pages" on top of each other and then show the > appropriate one, something like this: > import tkinter as tk > > def on_next_page(): > # Brings page 2 to the top. > frame_2.tkraise() > > def on_previous_page(): > # Brings pa

Re: Tkinter new window contentent when button is clicked.

2021-02-24 Thread MRAB
On 2021-02-24 21:57, Bischoop wrote: I'm learning Tkinter now and have upgraded few programs I've made in CLI in the past. What is bothering me now is what I should look at when I want new content in a window when button is 'Next' is clicked. In some programs we're clicking button next and new c

Re: Tkinter new window contentent when button is clicked.

2021-02-24 Thread Bischoop
On 2021-02-24, Bischoop wrote: > Just came to solution, I learnt that the combobox can be bind and call function when combobox value changes. -- Thanks -- https://mail.python.org/mailman/listinfo/python-list

Tkinter new window contentent when button is clicked.

2021-02-24 Thread Bischoop
I'm learning Tkinter now and have upgraded few programs I've made in CLI in the past. What is bothering me now is what I should look at when I want new content in a window when button is 'Next' is clicked. In some programs we're clicking button next and new content appears in same window. I've u

Re: Tkinter- New Window

2005-11-04 Thread James Stroud
On Friday 04 November 2005 10:01, Tuvas wrote: > Okay, never mind about my first question, I got that answer by using > Toplevel. However, there' s still a question to be answered. > > I popped up this new window with the intent to have something like > this: > > "what is your question" > _

Re: Tkinter- New Window

2005-11-04 Thread Jim Segrave
In article <[EMAIL PROTECTED]>, Tuvas <[EMAIL PROTECTED]> wrote: >Is there a way to make a new window pop up using Tkinter? I have some >functions that require more data in my interface than I have space for, >and would like to be able to pop up a new window to request this >information. Thanks! D

Re: Tkinter- New Window

2005-11-04 Thread Tuvas
Okay, never mind about my first question, I got that answer by using Toplevel. However, there' s still a question to be answered. I popped up this new window with the intent to have something like this: "what is your question" Ei, there's a question popped up, a label that

Tkinter- New Window

2005-11-04 Thread Tuvas
Is there a way to make a new window pop up using Tkinter? I have some functions that require more data in my interface than I have space for, and would like to be able to pop up a new window to request this information. Thanks! -- http://mail.python.org/mailman/listinfo/python-list