How does the Tool Strip progress bar work ? I want to link it to current operation performed.
Printable View
How does the Tool Strip progress bar work ? I want to link it to current operation performed.
ProgressBar1.Visible = True
ProgressBar1.Min = 0
ProgressBar1.Max = 10000
For i = 0 To ProgressBar1.Max
ProgressBar1.Value = i
Next