Need a sample windows application for localization-globalization concept implementation

Asked By Janardhan Bonthu
12-Nov-08 01:54 AM
Earn up to 0 extra points for answering this tough question.
Need a sample windows application for localization-globalization concept implementation

  sample application for localization and globalization

Perry replied to Janardhan Bonthu
12-Nov-08 02:14 AM

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

  re

Web Star replied to Janardhan Bonthu
12-Nov-08 02:14 AM

  re

Web Star replied to Janardhan Bonthu
12-Nov-08 02:16 AM

To set the UI Culture to view specific resources

  1. In the Code Editor, add the following code at the beginning of the module, before the Form1 declaration:
    ' Visual Basic
    Imports System.Globalization
    Imports System.Threading
    
    // C#
    using System.Globalization;
    using System.Threading;
  2. Add the following code. In Visual Basic, it should go in the New function, before calling the InitializeComponent function. In Visual C#, it should go in Form1() and also before calling the InitializeComponent function.
    ' 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");
  3. Save and build the solution.
  4. Press the F5 key or choose Start from the Debug menu.

    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

  see this link:
Binny ch replied to Janardhan Bonthu
12-Nov-08 04:04 AM
http://mosesofegypt.net/post/2008/09/18/Localization5cGlobalization-Considerations-and-Tips.aspx
  TRY THIS LINK
C_A P replied to Janardhan Bonthu
12-Nov-08 06:50 AM
http://www.microsoft.com/mspress/books/sampchap/6510.aspx
http://www.suodenjoki.dk/us/productions/articles/localization.htm
Create New Account