thank you for the reply..that solves my problem
damon
--
http://mail.python.org/mailman/listinfo/python-list
hi ,i created 3 buttons such that if button1 is clicked it will
disable button2 ,and clicking button3 will restore state of button2 to
normal,
to my dismay i find that button2 still responds to clicks even if it
is greyed out
here is the code..am i doing something wrong? is there a way to truly
d
if you disable the button it can still respond to clicks? it only
greys out.. or is there a problem with my code here?
class MyApp:
def __init__(self,parent):
self.mainframe=Frame(parent)
self.mainframe.pack()
self.button1=Button(self.mai