Custom Global Application Culture






4.71/5 (9 votes)
This article helps you in defining the application specific culture at the startup time of your application.
Introduction
Many of the times, developers code their application and forget that different systems can have different date and time format settings. This causes the application to crash. This article helps you in setting the Custom global culture info environment specific to your application.
Background
I was working on an existing application and found out the carelessness of the developers. If I changed my system settings, I could not run this application - this issue was assigned to me for fixing. So I did in this way.
Using the Code
The code is self explanatory. Now developers need not worry about the environment settings for the time and date formats.
Set and initialize all the Culture Settings at the start of your application:
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// Creating a Global culture specific to our application.
System.Globalization.CultureInfo cultureInfo =
new System.Globalization.CultureInfo("en-US");
// Creating the DateTime Information specific to our application.
System.Globalization.DateTimeFormatInfo dateTimeInfo =
new System.Globalization.DateTimeFormatInfo();
// Defining various date and time formats.
dateTimeInfo.DateSeparator = "/";
dateTimeInfo.LongDatePattern = "dd-MMM-yyyy";
dateTimeInfo.ShortDatePattern = "dd-MMM-yy";
dateTimeInfo.LongTimePattern = "hh:mm:ss tt";
dateTimeInfo.ShortTimePattern = "hh:mm tt";
// Setting application wide date time format.
cultureInfo.DateTimeFormat = dateTimeInfo;
// Assigning our custom Culture to the application.
Application.CurrentCulture = cultureInfo;
Thread.CurrentThread.CurrentCulture = cultureInfo;
Thread.CurrentThread.CurrentUICulture = cultureInfo;
..................
Application.Run(new Form1());
}
Points of Interest
Well most of you have tried the same thing but maybe it doesn't allow you to change the DateFormat
s directly. I tried to change the CurrentCulture.DateFormatInfo
at various times, but... :)
History
- 26th July, 2007: Initial post