Calendar with Culture Info

  • Thread starter Thread starter reidarT
  • Start date Start date
R

reidarT

Is it possible to control the calendar with Culture Info.
Actually the name of the days and months.
And how do I activate it_
regards
Reihaa
 
Hi Reihaa
What do you mean by that? Actually the types of calendar that can be used
do depend on the current culture of your domain. So you can't use for
example a calendar that is not of that associated with your current culture
of the running process.
Mohamed M .Mahfouz
Developer Support Engineer
ITWorx on behalf of Microsoft EMEA GTSC
 
hi
I am not sure whether it helps you or not,
in case of Date time class you can get culture specific inof , e.g.
DateTime dt = DateTime.Now;
string str = dt .ToString("ddd MMM d HH:mm:ss yyyy", new
System.Globalization.CultureInfo("en-US"));

regards
 
Back
Top