Python Forum
Using Tkinter widgets on child window
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Using Tkinter widgets on child window
#9
Yeah, strange but true: https://stackoverflow.com/questions/2855...x-elegance

It's also the reason why the OP is getting his: AttributeError: 'NoneType' object has no attribute 'insert'
Because on line 34 in his Second Window code he's in-lining the .place() function so now his self.Lb1 object is of type: None.

self.Lb1 = Listbox(self.bottom).place(x = 5, y = 140)
It's bitten me several times since I tend to favor compact, in-lined code.

Quick example code:
from tkinter import * # Just quick example code.  Star imports are not a good idea!
master = Tk()

btn1 = Button(master, text="ONE")
btn1.pack()

btn2 = Button(master, text="TWO").pack()

print(type(btn1))
print(type(btn2))

<class 'tkinter.Button'>
<class 'NoneType'>

Process finished with exit code 0  
"So, brave knights, if you do doubt your courage or your strength, come no further, for death awaits you all with nasty, big, pointy teeth!" - Tim the Enchanter
Reply


Messages In This Thread
RE: Using Tkinter widgets on child window - by Marbelous - Feb-27-2020, 10:34 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Interaction between Matplotlib window, Python prompt and TKinter window NorbertMoussy 3 529 Mar-17-2024, 09:37 AM
Last Post: deanhystad
  make widgets disappear from tkinter jacksfrustration 12 1,175 Feb-06-2024, 03:58 PM
Last Post: deanhystad
  Tkinter multiple windows in the same window tomro91 1 861 Oct-30-2023, 02:59 PM
Last Post: Larz60+
  Centering and adding a push button to a grid window, TKinter Edward_ 15 4,861 May-25-2023, 07:37 PM
Last Post: deanhystad
  [Tkinter] Open tkinter colorchooser at toplevel (so I can select/focus on either window) tabreturn 4 1,920 Jul-06-2022, 01:03 PM
Last Post: deanhystad
  [Tkinter] Background inactivity timer when tkinter window is not active DBox 4 2,934 Apr-16-2022, 04:04 PM
Last Post: DBox
  why my list changes to a string as I move to another window in tkinter? pymn 4 2,584 Feb-17-2022, 07:02 AM
Last Post: pymn
  [Tkinter] Tkinter Window Has no Title Bar gw1500se 4 2,869 Nov-07-2021, 05:14 PM
Last Post: gw1500se
  .get() from generated Entry widgets in tkinter snakes 4 4,247 May-03-2021, 11:26 PM
Last Post: snakes
  "tkinter.TclError: NULL main window" Rama02 1 5,868 Feb-04-2021, 06:45 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020