Python Forum
tkinter AttributeError: 'GUI' object has no attribute
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
tkinter AttributeError: 'GUI' object has no attribute
#1
Hi,

When I click the button I expect the entry to be populated. Instead I get the error "AttributeError: 'GUI' object has no attribute 'genPassText'".

What am I missing?

from tkinter import *

class GUI:
    def DoSomething(self):
        self.genPassText.delete(0, END)
        self.genPassText.insert(0,'Hello World')

    def __init__(self):
        # root window
        self.root = Tk()
        self.root.title("Demo")
        self.root.geometry("800x280")
        self.root.resizable(width=FALSE, height=FALSE)

        # pass length information
        genPassButton = Button(self.root, text = "Generate Password", command=self.DoSomething).grid(row=8, column=0, padx=5, pady=5)
        genPassText = Entry(self.root, width=80, bd=3, font=('Bold')).grid(row=8, column=1, padx=5, pady=5)
        


if __name__ == '__main__':
    mainwindow = GUI()
    mainloop()
    
  
Thanks,
Reply


Messages In This Thread
tkinter AttributeError: 'GUI' object has no attribute - by pfdjhfuys - May-18-2023, 12:53 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  TKinter Widget Attribute and Method Quick Reference zunebuggy 3 951 Oct-15-2023, 05:49 PM
Last Post: zunebuggy
  'NoneType' object has no attribute 'get' zunebuggy 8 1,571 Oct-13-2023, 06:39 PM
Last Post: zunebuggy
  [Kivy] Windows 10: AttributeError: 'WM_PenProvider' object has no attribute 'hwnd' mikepy 1 2,424 Feb-20-2023, 09:26 PM
Last Post: deanhystad
  Tkinter object scope riversr54 6 2,106 Feb-17-2023, 05:40 AM
Last Post: deanhystad
  [Tkinter] Can't update label in new tk window, object has no attribute tompranks 3 3,681 Aug-30-2022, 08:44 AM
Last Post: tompranks
  AttributeError: 'NoneType' object has no attribute 'get' George87 5 15,753 Dec-23-2021, 04:47 AM
Last Post: George87
  [PyQt] AttributeError: 'NoneType' object has no attribute 'text' speedev 9 11,628 Sep-25-2021, 06:14 PM
Last Post: Axel_Erfurt
  tkinter moving an class object with keybinds gr3yali3n 5 3,377 Feb-10-2021, 09:13 PM
Last Post: deanhystad
  [Tkinter] AttributeError: '' object has no attribute 'tk' Maryan 2 14,886 Oct-29-2020, 11:57 PM
Last Post: Maryan
  [Tkinter] AttributeError: 'tuple' object has no attribute 'replace' linuxhacker 7 6,983 Aug-08-2020, 12:47 AM
Last Post: linuxhacker

Forum Jump:

User Panel Messages

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