Link to home
Start Free TrialLog in
Avatar of nsmanikandan
nsmanikandan

asked on

PROGRESS BAR

HOW TO ACTIVATE OR USE PROGRESS BAR IN THE PROJECT? CAN ANY ONE TELL ME WITH SMALL SET OF CODE...?

THANKX IN ADVANCE....
ASKER CERTIFIED SOLUTION
Avatar of d_hottes
d_hottes

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of hes
Here is a simlpe example of using the progress bar

Private Sub Form_Load()
Form1.Show
DoEvents
Dim counter, x
x = 100000
ProgressBar1.Min = 0
ProgressBar1.Max = x
For counter = 1 To x
ProgressBar1.Value = counter
Next counter


End Sub