IM DOING A PROJECT AT SCHOOL, AND ON THE PROJECT I NEED TO PUT THE DATE AND TIME (CLOCK) AND THEY HAVE TO BE RUNNING.
Printable View
IM DOING A PROJECT AT SCHOOL, AND ON THE PROJECT I NEED TO PUT THE DATE AND TIME (CLOCK) AND THEY HAVE TO BE RUNNING.
you going to laugh on how easy this is check out the code you need 2 label's and a timer
Code:Private Sub Form1_Load()
Timer1.Interval = "1"
Timer1.Enabled = true
End Sub
Private Sub Timer1_Timer()
Label1.Caption = "The Time Is : " & Time
Label12.Caption = "The Date Is : " & Date
End Sub