wx.BusyInfo stay in Application after

Thanks Andrea, this works!

Have a nice day!

Stefanie

···

Hi Stefanie,

On Wed, May 27, 2009 at 9:36 AM, Stefanie Lück wrote:

Hi!

Thanks for your help but I still have some problems!

self.Destroy()
Dosen’t work, I tried this before I asked in the list. wx.BusyInfo stays in
Application.

del busy and busy = None
The wx.BusyInfo is not shown correctly. In the middle of the message appears
a white field, so the message is not readable.

Any ideas?

Try this:

busy = wx.BusyInfo(“My nice message”)
wx.SafeYield()

Do some long computation

del busy

Andrea.