Question

I have wxpython multi threaded app, bundled using py2exe, that keep running silently as a task-bar application under windows system tray. When I shutdown Windows, it shows following error message:

Error screen http://devzila.com/error.jpg

Was it helpful?

Solution 2

I'm able to figure it out: wx.EVT_END_SESSION is fired when windows try to close your application during shutdown.

wx.GetApp().Bind(wx.EVT_END_SESSION, self.onClose)

OTHER TIPS

Bind wx.EVT_CLOSE event for your application frame. In the callback function end all threads.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top