Re: Adding tkinter modules to notebook tabs [RESOLVED]

2020-04-05 Thread Rich Shepard
On Sat, 4 Apr 2020, Christian Gollwitzer wrote: Add that thing instead of the frame. blabla=BioDataForm() # whatever args it needs, maybe parent=nb nb.add(blabla, text="Biodata") Christian, This clarifies my uncertainty and answers my question. Thanks. PS: I suggest to change all Tk widget

Re: Adding tkinter modules to notebook tabs

2020-04-05 Thread Rich Shepard
On Sat, 4 Apr 2020, Terry Reedy wrote: IDLE's currently-working Settings dialog uses a ttl.Notebook with 5 tabs. To see it, run IDLE and on the top menu, select Options => Configure IDLE. Each tab displays a ttk.Frame with multiple widgets. Where there is a choice, ttk widgets are used. They ma

Re: Adding tkinter modules to notebook tabs

2020-04-04 Thread Terry Reedy
On 4/4/2020 10:59 AM, Rich Shepard wrote: My Python3-3.8.2 application has 8 modules with subject-specific data entry/editing widgets and I want to display each module on a ttk.Notebook. Each notebook resource I've found in my reference books and on the web describe how to create a notebook and t

Re: Adding tkinter modules to notebook tabs

2020-04-04 Thread Christian Gollwitzer
Am 04.04.20 um 22:31 schrieb Rich Shepard: On Sat, 4 Apr 2020, Christian Gollwitzer wrote: I'm not sure I fully understand it, because a "module" is not defined in the language of tkinter. Christian, True, but it is in Python: a file ending in .py which, in this case, contains a class of tki

Re: Adding tkinter modules to notebook tabs

2020-04-04 Thread Rich Shepard
On Sat, 4 Apr 2020, Christian Gollwitzer wrote: I'm not sure I fully understand it, because a "module" is not defined in the language of tkinter. Christian, True, but it is in Python: a file ending in .py which, in this case, contains a class of tkinter widgets. Is it correct, you want to k

Re: Adding tkinter modules to notebook tabs

2020-04-04 Thread Christian Gollwitzer
Am 04.04.20 um 16:59 schrieb Rich Shepard: My Python3-3.8.2 application has 8 modules with subject-specific data entry/editing widgets and I want to display each module on a ttk.Notebook. Each notebook resource I've found in my reference books and on the web describe how to create a notebook and

Adding tkinter modules to notebook tabs

2020-04-04 Thread Rich Shepard
My Python3-3.8.2 application has 8 modules with subject-specific data entry/editing widgets and I want to display each module on a ttk.Notebook. Each notebook resource I've found in my reference books and on the web describe how to create a notebook and tabs and add labels to the tabs; a few descr