Como tranformar de inteiro (Milisegundos) em formato Timer

 Você quer passar milisegundos para segundos no formato Time. Faça assim:

 

 function MSecToTime ( const intTime: integer ): string;

const

  intMSec = 1 / 24 / 60 / 60 / 1000; // o equivalente a 1 milisegundo

begin

  // define o retorno com o formato Time

  result := TimeToStr ( intTime * intMSec );

end;