How To Make A ProgressBar

Heres your chance to share your own tutorials with the community. Just post them on here. If your lucky they may even be posted on the main site.
5 posts Page 1 of 1
Contributors
User avatar
applezoom
New Member
New Member
Posts: 10
Joined: Thu Apr 12, 2012 12:31 am

How To Make A ProgressBar
applezoom
Needed:
Button - Start
Timer
ProgressBar(Duh)
Code:
Code: Select all
Public Class Form1

    Private Sub Timer1_Tick(sender As System.Object, e As System.EventArgs) Handles Timer1.Tick
        ProgressBar1.Value += 1
    End Sub

    Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
        Timer1.Start()
    End Sub
End Class

This file is hosted off-site.
Image
:3
ROBLOX
User avatar
zachman61
VIP - Donator
VIP - Donator
Posts: 1891
Joined: Wed Dec 16, 2009 9:56 pm

Re: How To Make A ProgressBar
zachman61
I was hoping this would be a GDI+ tutorial.
Nailing my feet to the floor is easier than using my own muscles to balance, but you don't see me doing that :)
User avatar
applezoom
New Member
New Member
Posts: 10
Joined: Thu Apr 12, 2012 12:31 am

Re: How To Make A ProgressBar
applezoom
zachman61 wrote:
I was hoping this would be a GDI+ tutorial.
Whats A GDI
Image
:3
ROBLOX
User avatar
mandai
Coding God
Coding God
Posts: 2585
Joined: Mon Apr 26, 2010 6:51 pm

Re: How To Make A ProgressBar
mandai
GDI+ is a library that allows graphical objects to be used.

I think this is more of a tutorial on how to use the built-in progressbar, though if you are looking to design your own control you would probably use GDI+.
User avatar
applezoom
New Member
New Member
Posts: 10
Joined: Thu Apr 12, 2012 12:31 am

Re: How To Make A ProgressBar
applezoom
mandai wrote:
GDI+ is a library that allows graphical objects to be used.

I think this is more of a tutorial on how to use the built-in progressbar, though if you are looking to design your own control you would probably use GDI+.
Oh
Image
:3
ROBLOX
5 posts Page 1 of 1
Return to “Tutorials”