The problem is once i set the textvariable property of the button,i cannot change the text.For example,
curButton = Button(root,text="Stop Server",textvariable="this")
curButton.bind("<Button-1>",self.StopServer)
def StopServer(self,event):
curButton["text"] = "Start Server" #this does not work
--
http://mail.python.org/mailman/listinfo/python-list
