Easy way to use a progress bar
Easy way to use a progress bar
API Declarations
All you need is a progress bar , and a timer
Rate Easy way to use a progress bar
(1(1 Vote))
set the timer event of your choice
on the timer event write this code
Private Sub Timer1_Timer()
on error resume next
If ProgressBar1.Value < ProgressBar1.Max Then
ProgressBar1.Value = ProgressBar1.Value + 1
elseif progressbar1.value = progressbar1.max then
timer1.enabled=false
msgbox " Done"
End Sub
Easy way to use a progress bar Comments
No comments yet — be the first to post one!
Post a Comment