ตัวอย่างหน้าตาของโปรแกรม
ตัวอย่างโค้ด ในส่วนของนาฬิกาจับเวลา (นับขึ้น)
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
If S < 59 Then
S = S + 1
Else
S = 0
If N < 59 Then
N = N + 1
Else
N = 0
If M < 9 Then
M = M + 1
Else
Timer1.Enabled = False
End If
End If
End If
Label1.Text = Format(S, "00")
Label2.Text = Format(N, "00")
Label3.Text = Format(M, "00")
End Sub