Hi,
I have a problem with counting the time interval. I'm trying to count, how much time is between two events in my software, but I'm not succesful.
For example in this code
the result is 12:00:06 and not 00:00:06 as I would expect.
What am I doing wrong ?
Thanks Petr.
I have a problem with counting the time interval. I'm trying to count, how much time is between two events in my software, but I'm not succesful.
For example in this code
B4X:
TimeFormat("hh:mm:ss")
Time1 = "09:00:00"
Time2 = "09:00:06"
Ticks1 = TimeParse(Time1)
Ticks2 = TimeParse(Time2)
T = Ticks2 - Ticks1
DeltaT = Time(T)
What am I doing wrong ?
Thanks Petr.