I have a clock in and clock out time stored in my program in the format HH/MM/SS as a string. How can I calculate the difference in hours, minutes and seconds between the two? I can convert the two to back to dates if necessary but cannot for the life of me figure out how to calculate the difference!
e.g.
clockIn = 12:10:45 clockout = 14:10:50
timeDiff should be 02:00:15.
Thanks in advance.