vote up 1 vote down star

How do I set a DateTimePicker to out put dd/mm/yyyy.

At the moment it is giving me the day, date, month then year.

Thanks.

flag

52% accept rate
I am using a Windows Application form, if I make the 'DatePicker' like this: "DatePicker.FormatCustom" it doesnt work... – The Woo Nov 3 at 22:08
it's CustomFormat not FormatCustom – Marek K Nov 3 at 22:17

3 Answers

vote up 3 vote down check
dateTimePicker1.CustomFormat = "dd/MM/yyyy";
dateTimePicker1.Format = DateTimePickerFormat.Custom;
link|flag
vote up 1 vote down
dateTimePicker1.CustomFormat = "dd/MM/yyyy";
dateTimePicker1.Format = DateTimePickerFormat.Custom;
link|flag
vote up 1 vote down

You need to set the property DateTimePicker.Format to DateTimePickerFormat.Custom and set your desired format in the DateTimePicker.CustomFormat property.

link|flag

Your Answer

Get an OpenID
or

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