hi...
how to calculate the difference between time 1 and time 2 ... and how to get the current time without moving "second"
coding that I do now makes a ticking time and can not do subtraction between the time ...
I really appreciate your help
Private Sub Command1_Click()
Timer1.Enabled = True
End Sub
Private Sub Command2_Click()
Timer2.Enabled = True
End Sub
Private Sub Timer1_Timer()
Label3.Caption = Time
Label4.Caption = Date
End Sub
Private Sub Timer2_Timer()
Label5.Caption = Time
Label7.Caption = Date
Dim nSec As Integer
nSec = DateDiff("s", Label3, Label5)
Label9.Caption = nSec
End Sub