delphidatetimetdatetime

Delphi: convert TDate to other format


var MyDate:TDate; 
   MyDate:=Date;

How can I convert local myDate to my format: 31/12/2011?

RecodeDate?

Thanks!!!


Solution

  • Check the FormatDateTime function in your case you try this

    FormatDateTime('dd/mm/yyyy',MyDate);