puts the time in the form caption
puts the time in the form caption
API Declarations
'works in vb5 and 6 and probably more
'same as putting time in a label, but then in the form, I put it there often
Rate puts the time in the form caption
(1(1 Vote))
Timer1.Enabled = True
Timer1.Interval = 1000
End Sub
Private Sub Timer1_Timer()
Me.Caption = "The time is now " & Format(Time, "hh:nn:ss")
End Sub
puts the time in the form caption Comments
No comments yet — be the first to post one!
Post a Comment