My code has a form that I show using "frmConversionStatus.Show vbModeless"
It has a progress bar, a label and a listbox. At the bottom of each loop in a module, I update the progress bar value and the label caption.
At various points during execution, the window will stop refreshing.
When running in the development environment, I can use Ctrl+Break to pause the execution and then resume it and the window will resume refreshing for a while. The code continued to execute while the screen was "frozen"
When running the compiled exe, the screen "freezes" but I can look at my output and see that it is continuing to grow.
To the user though, it will appear that the app has gotten stuck.
How can I get the window to continue to refresh?
It has a progress bar, a label and a listbox. At the bottom of each loop in a module, I update the progress bar value and the label caption.
At various points during execution, the window will stop refreshing.
When running in the development environment, I can use Ctrl+Break to pause the execution and then resume it and the window will resume refreshing for a while. The code continued to execute while the screen was "frozen"
When running the compiled exe, the screen "freezes" but I can look at my output and see that it is continuing to grow.
To the user though, it will appear that the app has gotten stuck.
How can I get the window to continue to refresh?