VB.NET - Steps to create localized form

Steps to create localized form.

1. Set the Localizable property to true.
2. Set the Language property to the language/region.
3. Make any localization-related changes in the UI.
4. The changed property values will automatically be stored in resource files.
5. To load appropriate resource file, CurrentUICulture is set to the appropriate CultureInfo.
VB.NET - difference between Globalization and Localization
VB.NET - difference between Globalization and Localization - Globalization refers to the application of culture-specific format to existing data.....
VB.NET - What is strong name?
VB.NET - What is strong name? - Create Key file with the strong name utility (sn.exe).....
VB.NET - Retrieve resources at run time
VB.NET - Retrieve resources at run time - Create an instance of the ResourceManager class using the assembly that contains the desired resource.....
Post your comment