I have two times in String format:
How can I get the difference: (Start Time) - (End Time)
I can do this with DateDiff, but how can I convert the strings into ticks (DateTime) format?
B4X:
Start Time: ($"$2.0{0}:$2.0{MyTime}:$2.0{0}"$) ------> 00:04:00
End Time: ($"$2.0{hours}:$2.0{minutes}:$2.0{seconds}"$) ------> 00:03:31
How can I get the difference: (Start Time) - (End Time)
I can do this with DateDiff, but how can I convert the strings into ticks (DateTime) format?