2
In the DateTimePicker
I can display anything using d
to day, MM
or MMMM
for month and yy
or yyyy
to year.
However, I would simply like to display on the property customformat
: April 15.
But when I write:
dtApartir.CustomFormat = "d de MMMM de yyyy";
Results in:
15 15th April 15th 2014.
Is there any way around that and display the "d" of the "of"?
It worked, so release milestone as sure (:
– Latrova