What is the syntax of the format string in the function FormatTime (timeInMS : double, format : String) ?
I have tried plenty of things such as “yyyy-mm-dd hh:mm:ss” but whatever I am using, instead of returning a formated time string, it returns the format string I have passed.
I finally found. Must be like something this “%H:%M:%S” for example.
I found an extended syntax via a search of the forum:
FormatTime(ClockTime(), “%d-%m-%Y %H:%M:%S”)
Many thanks !