Compact Framework - Retrieve a list of countries and regions - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T02:48:42Z http://stackoverflow.com/feeds/question/435951 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/435951/compact-framework-retrieve-a-list-of-countries-and-regions 3 Compact Framework - Retrieve a list of countries and regions GenericTypeTea 2009-01-12T16:22:03Z 2009-10-23T19:31:05Z <p>Afternoon people!</p> <p>I'm trying to implement a list of counties on my Compact Framework (Mobile) application.</p> <p>I can do this easily in the full .Net framework with CultureInfo.GetCultures(..etc). However, the CF seems to be missing this feature?</p> <p>Is there any way I can return a list of countries (and regions if possible) that I can populate into a ComboBox?</p> <p>The OS has a list of countries, so there must be a way to do it?</p> <p>I look forward to hearing back! </p> http://stackoverflow.com/questions/435951/compact-framework-retrieve-a-list-of-countries-and-regions/436119#436119 2 Answer by Stefano Driussi for Compact Framework - Retrieve a list of countries and regions Stefano Driussi 2009-01-12T16:59:50Z 2009-01-12T16:59:50Z <p>Unfortunatly CultureInfo.GetCultures method is not supported by .NET Compact Framework but you can iterate through available cultures on the device by checking on CultureType Enumeration. Here's<a href="http://msdn.microsoft.com/en-us/library/system.globalization.culturetypes.aspx" rel="nofollow">link</a> a link to MSDN with some explanation and examples </p> http://stackoverflow.com/questions/435951/compact-framework-retrieve-a-list-of-countries-and-regions/436390#436390 4 Answer by ctacke for Compact Framework - Retrieve a list of countries and regions ctacke 2009-01-12T18:11:16Z 2009-01-12T18:11:16Z <p>How about this?</p> <pre><code>using System; using System.Collections.Generic; using System.Globalization; using System.Runtime.InteropServices; namespace OpenNETCF.Globalization { public class CultureInfoHelper { private delegate int EnumLocalesHandler(string lpLocaleString); private static EnumLocalesHandler m_localesDelegate; private static List&lt;CultureInfo&gt; m_cultures; private static int EnumLocalesProc(string locale) { try { m_cultures.Add(CultureInfo.GetCultureInfo( int.Parse(locale, NumberStyles.HexNumber))); } catch { // failed for this locale - ignore and continue } return 1; } public static CultureInfo[] GetCultures() { if (m_localesDelegate == null) { m_cultures = new List&lt;CultureInfo&gt;(); m_localesDelegate = new EnumLocalesHandler(EnumLocalesProc); IntPtr fnPtr = Marshal.GetFunctionPointerForDelegate( m_localesDelegate); int success = EnumSystemLocales(fnPtr, LCID_INSTALLED); } return m_cultures.ToArray(); } private const int LCID_INSTALLED = 0x01; private const int LCID_SUPPORTED = 0x02; [DllImport("coredll", SetLastError = true)] private static extern int EnumSystemLocales( IntPtr lpLocaleEnumProc, uint dwFlags); } } </code></pre> <p>Usage looks like this:</p> <pre><code>using OpenNETCF.Globalization; .... static void Main() { foreach (CultureInfo ci in CultureInfoHelper.GetCultures()) { Debug.WriteLine(string.Format("0x{0:x2}({1}) : {2}", ci.LCID, ci.Name, ci.EnglishName)); } } </code></pre> <p>And output looks like this:</p> <pre><code>0x402(bg-BG) : Bulgarian (Bulgaria) 0x403(ca-ES) : Catalan (Catalan) 0x405(cs-CZ) : Czech (Czech Republic) 0x406(da-DK) : Danish (Denmark) 0x407(de-DE) : German (Germany) 0x408(el-GR) : Greek (Greece) 0x409(en-US) : English (United States) ... 0x400a(es-BO) : Spanish (Bolivia) 0x440a(es-SV) : Spanish (El Salvador) 0x480a(es-HN) : Spanish (Honduras) 0x4c0a(es-NI) : Spanish (Nicaragua) 0x500a(es-PR) : Spanish (Puerto Rico) </code></pre> http://stackoverflow.com/questions/435951/compact-framework-retrieve-a-list-of-countries-and-regions/1615460#1615460 -1 Answer by galvin for Compact Framework - Retrieve a list of countries and regions galvin 2009-10-23T19:31:05Z 2009-10-23T19:31:05Z <p>how did u get country list in drop down..........?</p>