Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Top Posters

Who's Online (0)

Powered by Vanilla. Made with Bootstrap.
[TUT]How to make a progressbar[TUT]
  • [align=center]Hello I'm Assistent. I'm gonna show you how to make a progressbar.
    Requested:
    1.Button.
    2.Progressbar.
    3.Timer.

    The progressbar and button must be horizontal.
    The timer must be in the progressbar.

    3.Timer:

    Code:
    Public Class Form1

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
    ProgressBar1.Increment(1)
    If ProgressBar1.Value = ProgressBar1.Maximum Then
    End If
    End Sub
    End Class


    1.Button:


    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Timer1.Start()
    End Sub
    End Class
    [/align]
  • Xin
    Posts: 3,251
    Once again great tut dude keep it up and you will get some vb awards
    Xin
  • undead
    Posts: 822
    Great tutorial! Good job