Visual Basic 2010 -...
 
Notifications
Clear all

Visual Basic 2010 - How to use a progress bar (Tutorial ) + Source


Guru
Posts: 340
 Guru
Topic starter
(@Guru)
Reputable RivalGamer
Joined: 9 years ago

Simple Tutorial + Source
Download App:

[HIDE]Download Progress Bar Tut.exe from Sendspace.com - send big files the easy way[/HIDE]
Virus Scan:
Antivirus scan for 97e8a8415e42ed774a3dc95ef75a51bf550adb58fa538b11b36824a77b1ed90d at2016-05-27 1825 UTC - VirusTotal
Download Source:

[HIDE]Download Progress Bar Tut.rar from Sendspace.com - send big files the easy way[/HIDE]



Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
	        Timer1.Start()
	    End Sub
	
	    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
	        MessageBox.Show("Progress bar Tut DeveloperExtra!")
	    End Sub
	
	    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
	        ProgressBar1.Increment(1)
	        If ProgressBar1.Value = 100 Then
	            Timer1.Enabled = False
	            MessageBox.Show("Hello People!")
	        End If
	    End Sub
	End Class

Reply
Name of the Video Game, and any other Tags