I was just wondering if anyone had a small function to convert the LFS Split times to user readable times, I've taken Dygear/AndroidXP's idea and rewritten the function in VB.NET but its not perfect just wondering what other people have done for this?
TimeSpan.FromMilliseconds ?
http://www.lfsforum.net/showthread.php?p=722088
It doesn't add the leading 0 for seconds I guess I could add it in there manually but perhaps there's a simpler neater example?
TimeSpan.FromMilliseconds ?
http://www.lfsforum.net/showthread.php?p=722088
<?php
Dim returnTime As String = String.Format("{0}:{1:f}", Math.Floor(IntTime / 60000), (IntTime Mod 60000) / 1000)
'1:2.53 62530 = 1:02.53
?>