Make a clock using Visual Basic 6.0.
Make a clock using Visual Basic 6.0.
Rate Make a clock using Visual Basic 6.0.
(1(1 Vote))
' Put a label control over the form
Private Sub Form_Load()
Timer1.Interval=1000
End Sub
Private Sub Timer1_Timer()
Label1.Caption=Now
End Sub
Make a clock using Visual Basic 6.0. Comments
No comments yet — be the first to post one!
Post a Comment