pls give me the simple source code for vb progress bar

thnks edel




Answer this question

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



  • pls give me the simple source code for vb progress bar