var MyDate:TDate; 
   MyDate:=Date;

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

RecodeDate?

Thanks!!!

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Check the FormatDateTime function in your case you try this

FormatDateTime('dd/mm/yyyy',MyDate);
link|improve this answer
1  
:) Thanks, why nothing was said about that function here: docwiki.embarcadero.com/RADStudio/en/Date_and_Time_Support ? – maxfax Aug 1 '11 at 3:15
@Maxfax - good question. It is in Type conversion routines, but a second reference would be good – Gerry Coll Aug 1 '11 at 4:36
4  
Depending on your (and your clients) requirements, it may be better to use DateToStr(MyDate), as this will follow the current users locale settings, e.g. mm/dd/yyyy for US users, dd/mm/yyyy for UK etc. American software that always uses mm/dd/yy annoys (and confuses) me, so I try to extend the same courtesy that I would like. – Gerry Coll Aug 1 '11 at 4:40
@Gerry, thanks! – maxfax Aug 1 '11 at 6:45
there are some variables which contain the current date locales. see docwiki.embarcadero.com/VCL/en/SysUtils.ShortDateFormat – Bernd Ott Aug 1 '11 at 8:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.