Is ther a way to get all the country's in regional that MS lists in control panel

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi is there an array that can be looped through
Instead of putting my own list in the program or file

instead of
Dim RG As New RegionInfo("US")


such as
get reginional(country).count

for x = 0 to etc............... or something of this sort to list
what MS list to later get currency or times) for selection


Thanks
Jerry
 
Hi John,

Have you tried...

system.Globalization.CultureInfo.GetCultures(Globalization.CultureTypes.AllCultures)

Nick.
 
Back
Top