I want to change the date picker by upper-casing the first letter of the month.
Currently I'm using the set culture info in the thread and specify the format there, but for my culture the month is always all lowercase:
CultureInfo ci = new CultureInfo("es-MX");
ci.DateTimeFormat.ShortDatePattern = "ddd dd/MMM/yyyy";
Thread.CurrentThread.CurrentCulture = ci;
Displays:
Dom 19/ago/2012
And I would like to have:
Dom 19/Ago/2012
How can I change that?