Click here to Skip to main content
15,894,907 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
In my c# windows form I change culture to japanese as follows

C#
Thread.CurrentThread.CurrentCulture = new CultureInfo("ja-JP");

Thread.CurrentThread.CurrentUICulture = new CultureInfo("ja-JP");


But in my date time pickers shows the date format in Regional and Language date format.

Is there any way to set the date format wihtout setting the custom format for the date time picker by changing the culture.
Posted
Updated 30-Sep-19 20:58pm
v2
Comments
AmitGajjar 21-Feb-12 1:55am    
hope you have done googling for this issue. i found this link. it says that default date picker's culture would be the same as the local windows culture.

Try with some other third party control

thanks
-Amit.

I use
Console.WriteLine(string.Format(System.Globalization.CultureInfo.CreateSpecificCulture("en-US"), "{0:ddd, dd MMM yyyy tt}", dateTimePicker1.Value));

to get am/pm.

-

Microsoft writes the datepicker and month controls cant be affected by Culture or CultureUI.

http://support.microsoft.com/Default.aspx?scid=kb%3ben-us%3b889834&x=18&y=19[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900