DateTimePicker - Format Value

  • Thread starter Thread starter Terry
  • Start date Start date
T

Terry

My system short date format is dd/mm/yy.

The DateTimePicker returns mm/dd/yyyy hh:mm:ss PM.

I need to get this value formated into dd/mm/yyyy regardless of the system
short date format, what do I need to use please.

Regards
Terry
 
Terry said:
My system short date format is dd/mm/yy.

The DateTimePicker returns mm/dd/yyyy hh:mm:ss PM.

I need to get this value formated into dd/mm/yyyy regardless of the system
short date format, what do I need to use please.


The DateTimePicker control's 'Value' property returns a 'Date' instance,
which you can format by calling its 'ToString' method and passing
appropriate formatting options to this method.
 
Hi Terry,

Try setting the Format property = Custom and CustomFormat property =
"dd/MM/yyyy"

hth

diego
 
Thanks Diego,

This will be useful for changing the displayed value in the control, at the
moment long date is OK. Thanks for the usefull info.
Regards

Terry
 
Back
Top