SHARE
Facebook X Pinterest WhatsApp

Localization in VB.NET

Introduction Localization allows you to customize your application according to a certain culture. Today I will show you how to Localize your application to three different cultures. It is always good to learn by example, so let’s do a project. Our Project Our little project is a Windows Forms project with two controls: a Combobox […]

Written By
thumbnail
Hannes DuPreez
Hannes DuPreez
Aug 4, 2014
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Introduction

Localization allows you to customize your application according to a certain culture. Today I will show you how to Localize your application to three different cultures.

It is always good to learn by example, so let’s do a project.

Our Project

Our little project is a Windows Forms project with two controls: a Combobox and a label. It looks like Figure 1.

Our design
Figure 1 – Our design

Now, adding localization capabilities isn’t that difficult at all. It is actually pretty easy as VB takes care of everything for you. Now, isn’t that cool?

In design view, click on the form and open the Properties window.

Select the Form’s Language property and you will notice that it is set to Default. The trick here is that when we set it to something else, it will automatically localize our application!

Set the Form’s Localizable Property to True. This enables Localization.

Change the form’s Language property to English and then change the Label’s Text, as shown in the next image:

English Label
Figure 2 – English Label

Change the Form’s Language property to French, and change the Label’s text to:

French Label
Figure 3 – French Label

You might have noticed that with the very first text you had to supply, that it is a strange language as well. That is Afrikaans, my mother-tongue. We now have three languages at play here: Afrikaans, English, and French.

When a user’s Locale has been set to any of those, the associated text will be displayed.

We can take it a step further! Add the next code:

   Imports System.Globalization
		Imports System.ComponentModel

		Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load

        'Add items to combobox
        ComboBox1.Items.Add("English")
        ComboBox1.Items.Add("Afrikaans")
        ComboBox1.Items.Add("French")

    End Sub

    Private Sub comboBox1_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs)

        If ComboBox1.SelectedIndex = 0 Then

            ChangeLanguage("en")

        ElseIf ComboBox1.SelectedIndex = 1 Then

            ChangeLanguage("af-AF")

        Else

            ChangeLanguage("fr-FR")

        End If

    End Sub

This loads items into the combobox, and determines which item has been selected.

Add the final piece of the puzzle:

    Private Sub ChangeLanguage(ByVal Language As String)

        For Each c As Control In Me.Controls

            Dim crmLang As ComponentResourceManager = New ComponentResourceManager(GetType(Form1))

            crmLang.ApplyResources(c, c.Name, New CultureInfo(Language)) 'Set desired language

        Next c

    End Sub

This sets the locale based on the resources. Now where do the resources come from?

Build your project. Once built, expand all the items inside the Solution Explorer. It should resemble Figure 4. You will see that the resource files for Afrikaans as well as French have been created.

Solution Explorer with new resources
Figure 4 – Solution Explorer with new resources

Conclusion

I hope you have enjoyed today’s article. This is me signing off!

Recommended for you...

Using Multiple Programming Languages to Create an ASP.NET Website
Tariq Siddiqui
Jun 11, 2022
Visual Basic Features in Visual Studio 2022
Hannes DuPreez
Jan 25, 2022
Playing with Strings: Proper Case
Hannes DuPreez
May 27, 2020
Making a Small Lotto Game in VB.NET
Hannes DuPreez
Apr 28, 2020
CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2025 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.