Possible Duplicate:
In Tkinter is there any way to make a widget not visible?
I have a label looks like:
Lab = Label(text = "Update ID")
Lab.pack(side = LEFT)
I want this label invisible but would like to make it visible when particular button is clicked.
I have a button looks like:
Button1 = Button(buttons, text = "Update Item", command = self.Update_item)
Button6.pack(side = LEFT, padx = 5, pady = 3)
I want the label invisible but would like to make it visible when 'Button1' is clicked.
Any feedbacks would be appreciated.