Hi, I'd like to know if it is possible to customize a timestamp wich have this format 00(H):00(M):00(S) to a format that could use and print hundred of hours 000(H):00(M):00(S). What should I do to get that ?
It appears that you cannot do this directly from a built in function. What you may want to do is create a custom timestamp that keeps track of minutes and seconds. Then you may want to have a counter that increments when the minutes reaches 60 and concatenate the entirety as a string. I hope this helps point you in the right direction.