is there a way for me to format the raddatetimepicker
to have a month and year view on selection view?..
something like this..
what I have tried so far is this:
dateStartDate.Value = DateTime.Now;
dateStartDate.Format = DateTimePickerFormat.Custom;
dateStartDate.CustomFormat = "MMMM - yyyy";
dateStartDate.ShowUpDown = true;
but it doesn't show the view anymore instead gives me an up
and down
button to change the month....
I am Using C#
as my language and telerik
.....
and this is a windows form...