From Clomosy Docs
function TimeToStr(const S:TclDateTime):string;
The TimeToStr function converts a TclDateTime value S into a formatted time string. The time is formatted using the LongTimeFormat value, which in turn uses the TimeSeparator value.
Example
var
myTime : TclDateTime;
{
myTime = StrToTime('15:22:35');
ShowMessage('myTime = '+TimeToStr(myTime));
}
Output:
myTime = 15:22:35