search
Japanese Chinese Nederlands Espanol Italiano Deutsch Francais Twitter Rss Feeds
MicrosoftArticlesForumsFAQs
C# .NET
VB.NET
Visual Studio .NET
ADO.NET
Xml / Xslt
VB 6.0
.NET CF
GDI+
LINQ
Deployment
Security
FoxPro
Silverlight / WPF
Entity Framework
RIA Services

Web ProgrammingArticlesForumsFAQs
JavaScript
ASP
ASP.NET
Web Services

Non-MicrosoftArticlesForumsFAQs
NHibernate
Perl
PHP
Ruby
Java
Linux / Unix
Apple
Open Source

DatabasesArticlesForumsFAQs
SQL Server
Access
Oracle
MySQL
Other Databases

OfficeArticlesForumsFAQs
Excel
Word
Powerpoint
Outlook
Publisher
Money

Operating SystemsArticlesForumsFAQs
Windows 7
Windows Server
Windows Vista
Windows XP
Windows Update
MAC
Linux / UNIX

Server PlatformsArticlesForumsFAQs
BizTalk
Site Server
Exhange Server
IIS

Graphic DesignArticlesForumsFAQs
Macromedia Flash
Adobe PhotoShop
Expression Blend
Expression Design
Expression Web

OtherArticlesForumsFAQs
Subversion / CVS
Ask Dr. Dotnetsky
Active Directory
Networking
Uninstall Virus
Job Openings
Product Reviews
Search Engines
Resumes

 

View Other VB.NET Posts   Ask New Question 
Need a sample windows application for localization-globalization concept implementation
Janardhan Bonthu posted at Wednesday, November 12, 2008 1:54 AM
Need a sample windows application for localization-globalization concept implementation

 
  sample application for localization and globalization
Raj Cool... replied to Janardhan Bonthu at Wednesday, November 12, 2008 2: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 at Wednesday, November 12, 2008 2:14 AM

here is with example

http://almosteffortless.com/2008/07/21/simple-localization-in-rails-22/

 
  re
Web star replied to Janardhan Bonthu at Wednesday, November 12, 2008 2: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 at Wednesday, November 12, 2008 4:04 AM
http://mosesofegypt.net/post/2008/09/18/Localization5cGlobalization-Considerations-and-Tips.aspx
 
TRY THIS LINK
C_A P replied to Janardhan Bonthu at Wednesday, November 12, 2008 6:50 AM
http://www.microsoft.com/mspress/books/sampchap/6510.aspx
http://www.suodenjoki.dk/us/productions/articles/localization.htm