ProgressBar - This should be simple, but it doesn't work!
-
I am adding my first progress bar to a VB.NET application, and I placed it on a form I want to increment the value property after calling each of a series of subroutines. I used the ProgressBar1.Inctement() statement for this, but the progress bar dosen't change. I tried adding the ProgressBar1.Refresh statement after I increment, and also refreshed the form, but it didn't help. What am I doing wrong? Thanks!
-
I am adding my first progress bar to a VB.NET application, and I placed it on a form I want to increment the value property after calling each of a series of subroutines. I used the ProgressBar1.Inctement() statement for this, but the progress bar dosen't change. I tried adding the ProgressBar1.Refresh statement after I increment, and also refreshed the form, but it didn't help. What am I doing wrong? Thanks!
A few questions: What are the Minimum and Maximum properties set to? What does the Increment statement look like? Also, after to do the Increment, have you tried doing an Application.DoEvents() so the window and it's controls can update? RageInTheMachine9532