The usual VB way to handle a computationally heavy task is to put it in a background worker thread, while the main thread keeps handling the UI.
Say for whatever rea
The UI can't be updated from any other thread than the main event dispatching thread. So you are trying to do something that won't work.