Showing posts with label stopwatch. Show all posts
Showing posts with label stopwatch. Show all posts

Thursday, June 21, 2012

Simple StopWatch Using Visual Basic 2008

 Design
Testing Project

You will need the following:
* 3 Button
* 1 Label
* 1 Timer (Interval set @ 1000)



Program Codes :
Public Class Form1

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        Label1.Text = Val(Label1.Text) + "01"
    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Timer1.Enabled = True
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        Timer1.Enabled = False
    End Sub

    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
        Label1.Text = "0"
    End Sub
End Class