Get_Involved
Active Member
- Joined
- Jan 26, 2007
- Messages
- 383
I have this VB code in Module1
And this code in ThisWorkbook
The clock works perfect, but date is 1/0/00
Can someone help me to get it to show today’s month/day/year and time?
Code:
Dim TimerActive As Boolean
Sub StartTimer()
Start_Timer
End Sub
Private Sub Start_Timer()
TimerActive = True
Application.OnTime Now() + TimeValue("00:00:01"), "Timer"
End Sub
Private Sub Stop_Timer()
TimerActive = False
End Sub
Private Sub Timer()
If TimerActive Then
ActiveSheet.Cells(6, 3).Value = Time
Application.OnTime Now() + TimeValue("00:00:01"), "Timer"
End If
End Sub
And this code in ThisWorkbook
Code:
Private Sub Workbook_Open()
Module1.StartTimer
End Sub
The clock works perfect, but date is 1/0/00
Can someone help me to get it to show today’s month/day/year and time?