From: Uwe S. <sc...@nu...> - 2004-04-27 13:56:49
|
Hi, I wrote a litte GUI for steering some numerical calculations. PythonCard works fine, but I got one problem: How can I refresh the GUI inside an event triggered method ? I have: def on_startbutton_mouseDown(self, event): self.components.calcinfo.text="calculation started" self.doCalc1() # needs some seconds self.components.calcinfo.text="calculation finished" self.components.calcinfo is a TextField component. If I start this application, the first message does not appear before the calculation is started... Any hints ? Greetings, Uwe |