From: Don T. <nos...@gm...> - 2005-12-17 03:45:36
|
I think that there is also a problem in this bit of code on the last page of the "How to add a child window" walkthrough: def doExit(self): self.parent.components.field1.text = "99" def on_close(self, event): self.doExit() self.visible = False def on_menuFileExit_select(self, event): self.close() The on_menuFileExit_select event does not seem to get fired anymore so the code and the description need to be changed. Don. PS. Is it simply not possible to intercept File->Exit events now, or is there some other event that can be used instead? |