T
Tim Wilson
By the last few lines in your post it sounds like you're not currently using
a thread but I'd better ask up front... are you calling form.Update() from a
different thread other than the main thread (aka a new thread)? UI updates
should be performed on the UI (main) thread. Something to try is to call
Application.DoEvents() after calling Update() to see if that helps.
a thread but I'd better ask up front... are you calling form.Update() from a
different thread other than the main thread (aka a new thread)? UI updates
should be performed on the UI (main) thread. Something to try is to call
Application.DoEvents() after calling Update() to see if that helps.