Software Development Network>> Visual Basic>> pls give me the simple source code for vb progress bar
thnks edel
There are several ways to control the value of the progress bar...drop one on your from from the toolbox and then:
pls give me the simple source code for vb progress bar
I LIKE VB.NET
There are several ways to control the value of the progress bar...drop one on your from from the toolbox and then:
Me.ProgressBar1.Maximum = 100 Me.ProgressBar1.Minimum = 0 Me.ProgressBar1.Step = 1 Me.ProgressBar1.Increment(10) Me.ProgressBar1.PerformStep() Me.ProgressBar1.Value = 20