Please Help

Hayathms hayathms at gmail.com
Wed Jul 14 16:51:01 EDT 2010


PLease anyone help me ,,

program not running
------------------------------------------------------------------------------------

from tkinter import ttk
from tkinter import *

class Hami(ttk.Frame):
        def __init__(self,master=None):
                ttk.Frame.__init__(self,master,borderwidth=5)
                self.grid(column=0,row=0,sticky=('W,E,N,S'),padx=5,pady=5)


class Honey(ttk.Label):
    def __init__(self,master=None,te='Honey'):
        ttk.Label.__init__(master,text=te)
        self.grid(column=0,row=0)


root=Tk()
root.title('Employee')
root.option_add('*tearOff',FALSE)
sam=Hami(root)
harmain=Honey(master=sam)
root.mainloop()
------------------------------------------------------------------------------------

Error is  ---->


Traceback (most recent call last):
  File "C:/Python31/hayathhh.py", line 20, in <module>
    harmain=Honey(master=sam)
  File "C:/Python31/hayathhh.py", line 13, in __init__
    self.grid(column=0,row=0)
  File "C:\Python31\lib\tkinter\__init__.py", line 1843, in grid_configure
    self.tk.call(
AttributeError: 'Honey' object has no attribute 'tk'
>>>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20100715/76b0b932/attachment.html>


More information about the Python-list mailing list