I just want to know the Code of creating a watch in my Form can you plizz help me.
Printable View
I just want to know the Code of creating a watch in my Form can you plizz help me.
Create a Label, and a Timer, then use this code:
Thats as easy as they come..VB Code:
Private Sub Form_Load() Timer1.Interval = 1000 '1 second End Sub Private Sub Timer1_Timer() Label1.Caption = Time() End Sub
:)
Phreak