I have a small form that has a progress bar on it that when loads just updates the progress bar's value. In my main form, if I click a button to load another large form I want to disply my progress form during the load process and hide it when my large form is ready. All works well as far as the order of operations EXCEPT my progress bar's value does not move. It's as if no CPU cycles are given to the progress form while the large form is loading. How can I get these to processes to work aynchronously?
My call is like this:
VB Code:
frmProgress.Show DoEvents Load LargeForm LargeForm.Show Unload frmProgress


Reply With Quote
