Shows you a clock in very simple way in VB.net
Shows you a clock in very simple way in VB.net
Rate Shows you a clock in very simple way in VB.net
(1(1 Vote))
End Sub
'Task: Make a simple clock that tells the time.
'Declarations
'Code:
'Needs:
''1 Timer (interval = 60)
'1 Label (call it 'lblTime')
Private Sub lbltime_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lbltime.Click
End Sub
Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs)
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
lbltime.Text = TimeString
End Sub
End Class
Shows you a clock in very simple way in VB.net Comments
No comments yet — be the first to post one!
Post a Comment