Issues with CultureInfo.GetCultures() - Get Country names in a Country Programming Web Development by Diogo Martinho … CultureInfo("en-GB"); var cultures = CultureInfo.GetCultures(CultureTypes.SpecificCultures); Which retrieves me a list of Cultures…CurrentThread.CurrentUICulture = new CultureInfo(countrycode); var cultures = CultureInfo.GetCultures(CultureTypes.SpecificCultures); var cultureList = new List<String>… Globalization Programming Software Development by sonia sardana … Dim aL As New ArrayList() For Each ci In CultureInfo.GetCultures(CultureTypes.SpecificCultures) ComboBox1.Items.Add(ci.Name) Next ci End… Re: Globalization Programming Software Development by sonia sardana … Dim aL As New ArrayList() For Each ci In CultureInfo.GetCultures(CultureTypes.SpecificCultures) ComboBox1.Items.Add(ci.Name) Next ci End… Re: Globalization Programming Software Development by Renukavani … Dim aL As New ArrayList() For Each ci In CultureInfo.GetCultures(CultureTypes.SpecificCultures) ComboBox1.Items.Add(ci.Name) Next ci End… Re: Globalization Programming Software Development by sonia sardana … Dim aL As New ArrayList() For Each ci In CultureInfo.GetCultures(CultureTypes.SpecificCultures) ComboBox1.Items.Add(ci.Name) Next ci End… Creating a country list combobox, and other things Programming Software Development by ticktock …> cultureList = new List<string>(); CultureInfo[] cultures = CultureInfo.GetCultures(CultureTypes.AllCultures & ~CultureTypes.NeutralCultures); foreach (CultureInfo culture in cultures… Re: Creating a country list combobox, and other things Programming Software Development by Diamonddrake …> cultureList = new List<string>(); CultureInfo[] cultures = CultureInfo.GetCultures(CultureTypes.AllCultures & ~CultureTypes.NeutralCultures); foreach (CultureInfo culture in cultures… Re: uIssue with CultureTypes.SpecificCultures - United Kingdom Programming Web Development by kvprajapati … following code-snippet which returns English cultures: var list = CultureInfo .GetCultures(CultureTypes.AllCultures) .Where(x=>x.TwoLetterISOLanguageName=="en"… Re: Issues with CultureInfo.GetCultures() - Get Country names in a Country Programming Web Development by pritaeas http://msdn.microsoft.com/en-us/library/system.globalization.regioninfo.displayname.aspx See the **Remarks** section. The DisplayName is taken from your installed version of .NET, so even if you change the culture, your installed version probably does not have the correct resources installed. Re: Issues with CultureInfo.GetCultures() - Get Country names in a Country Programming Web Development by Diogo Martinho What should I do then in that case? Re: Issues with CultureInfo.GetCultures() - Get Country names in a Country Programming Web Development by pritaeas Build a resource yourself, which you can then include and use in your application. Perhaps you can find one online. There must've been more people facing this issue. Re: Globalization Programming Software Development by choudhuryshouvi [URL="http://www.aspnettutorials.com/tutorials/controls/globalization-calendar-vb.aspx"]Check this tutorial[/URL] Re: Globalization Programming Software Development by sourav bansal plz...send me this answer in vb.net 2005 version nd also give me passcode for vb.net 2005 ...plz do it soon.. Re: Creating a country list combobox, and other things Programming Software Development by ticktock Thank you so much for this Diamonddrake, I was certain that it had something to do with windows 7. Thank you for your input! Much appreciated! Also, thank you for the reading material on error handling with keypress and keydown, I shall read it now! Thanks! I will just mark this as solved then! Re: Creating a country list combobox, and other things Programming Software Development by Diamonddrake Glad I could be of some help :)