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 18:32:25 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