I'm using Delphi 2007.

I need write a FormatDateTime function that always return 01/01/ to a TDateEdit box (DevExpress component) as EditValue.

I've already tried...

tcxDateEdit1.EditValue := FormatDateTime('01/01/'+ 'yyyy',now);

and

tcxDateEdit1.EditValue := FormatDateTime('01/01/yyyy',Now);

but none of them worked. It result in an error of converting variant of type string to double. "Could not convert variant of type (String) into type (Double)"

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

I'm only guessing but your EditValue property seems to be of TDateTime (or TDate) type (while FormatDateTime returns a string). If that's true you could try the following:

tcxDateEdit1.EditValue := EncodeDate(YearOf(Now), 1, 1);

See also: YearOf, EncodeDate, FormatDateTime documentation

link|improve this answer
Thank you. It worked perfectly. :) – MMalke Nov 7 '11 at 17:04
feedback

Your Answer

 
or
required, but never shown

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