Hi,
I've frame with wxglcanvas which displays 3d models. When loading a large 3d model file, my progress dialog goes back and forth with respect to the application frame.
wxWidgets 2.8.10
windows 7.
please go through this link http://murugan.net46.net/progress.wmv
progress dialog goes back and forth Topic is solved
progress dialog goes back and forth
Every exit is an entry somewhere else!
Re: progress dialog goes back and forth
You mean the effect that the dialog itself moves on its own? As it always happens when the "Not responding" appears, it might be Windows itself who does this.
The "Not responding" should be avoided anyway. Especially Windows 7 is very picky about this and might even kill the application when it's not responding for a longer period of time. Try calling Update() more often. If that's not possible, you might have to move the loading part into a worker thread.
The "Not responding" should be avoided anyway. Especially Windows 7 is very picky about this and might even kill the application when it's not responding for a longer period of time. Try calling Update() more often. If that's not possible, you might have to move the loading part into a worker thread.
Use the source, Luke!
Re: progress dialog goes back and forth
@doublemax tried sample app with threads and it solves the not-responding as well as hiding issue but unfortunately I cannot use it since there are too may UI related code in my loading function 

Every exit is an entry somewhere else!