See the best examples of sample application for localization and globalization at
http://secure.codeproject.com/KB/locale/GlobalizationSample.aspx
http://69.10.233.10/KB/aspnet/RDLC_Localization.aspx
here is with example
http://almosteffortless.com/2008/07/21/simple-localization-in-rails-22/
To set the UI Culture to view specific resources
' Visual Basic Imports System.Globalization Imports System.Threading // C# using System.Globalization; using System.Threading;
' Visual Basic ' Sets the UI culture to French (France) Thread.CurrentThread.CurrentUICulture = New CultureInfo("fr-FR") // C# // Sets the UI culture to French (France) Thread.CurrentThread.CurrentUICulture = new CultureInfo("fr-FR");
Now the form will be always displayed in French. If you changed the size of the button earlier to accommodate the longer French string, notice that the button size has also been persisted in the French resource file. http://msdn.microsoft.com/en-us/library/y99d1cd3(VS.71).aspx