How to set Datetimepicker to Month and Year only format?

asdasdad picture asdasdad · Apr 13, 2012 · Viewed 79.4k times · Source

How can I set the Datetimepicker-Format to MM/YYYY?

Answer

ABH picture ABH · Apr 13, 2012

Use DateTimerPicker.Format property. Check MSDN

public void SetMyCustomFormat()
{
   // Set the Format type and the CustomFormat string.
   dateTimePicker1.Format = DateTimePickerFormat.Custom;
   dateTimePicker1.CustomFormat = "MM/yyyy";
}