How to create a progress bar with a counter in Visual Basic
Loading...
34,033
Loading...
Uploader Comments (esproman)
see all
All Comments (125)
-
what theme do u have
-
@Gameshacker15932 009 Sound System - Dreamscape
-
@MatthewCenance You must type Label1.Text, not Label1.Caption!
-
@DaMiK83 But Timer1.Stop() does not work on Visual Basic 6!
-
@drakola159753 You must write the code for the Timer for it to work!
-
I cant believe you still have that DINOSAUR of a computer. You my friend, are awesome. (where did the 60's go.........)
-
i have a problem:
when i press debug the progsesbar do not load
but when i click on it 1 then it wil be 1 procent and then ik click 2 it wil be 2 procnt....
can you help me
-
NOOO, NOT THIS SONG AGAIN, PLEASE NO!!
-
@ionlylikecodmw1 It is windows xp with the zune theme.
Loading...
How can i make my label change at a certain percentage? I want it to say at 1% "Installing". At the 35% i want it to change and say "Copying files". At 80% i want it to say "checking".
Also, one other question,
How can i make the progress bar slow down, and than speed up and etc????
PLEASE REPLY!
vbsripter 2 years ago
to slow it down/speed it up... u just change the interval of the timer
To make a label say diffrent stuff:
'After all other code in the timer
if progressbar1.value = 35 then
label1.caption = progressbar1.value & "%" & " Installing"
end if
if progressbar.value = 75 then
label1.caption = progressbar1.value & "%" & " Almost done!"
end if
esproman 2 years ago