Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
464 views

What is the best way to determine the correct Charset for a given LCID at runtime in VB6?

I am displaying Japanese characters in a VB6 application with the system locale set to Japan and the language for non Unicode programs as Japanese. A call to GetACP() correctly returns 932 for ...
2
votes
1answer
91 views

CultureInfo for Latin language

I develop an app for working with multi-language resources. In database, when I need colomn with language identifier, I use language LCID. Now I need to add new language - Latin. It's LCID - 1142. But ...
2
votes
2answers
913 views

What is LCID 127?

In asp.net what is the culture represented by LCID 127? <%Response.Write(System.Globalization.CultureInfo.InvariantCulture.LCID)%> Output = 127.
1
vote
0answers
135 views

get LCID from string

How to get LCID from string like "en-US"? I know about GetLocaleInfoEx function, but it doesn't work on windows XP. Can I get LCID from CRT locale? UPD: Can I convert between LCID and CRT locale ...
1
vote
0answers
378 views

How do I get LCID of a culture from Short name in silverlight?

The CultureInfo class in Silverlight does not expose LCID property unlike its .NET counterpart. How do I get the LCID for a culture from its short name? e.g. getting 1033 as LCID by giving "en-US" as ...
1
vote
3answers
5k views

How to convert Microsoft Locale ID (LCID) into language code or Locale object in Java

I need to translate a Microsoft locale ID, such as 1033 (for US English), into either an ISO 639 language code or directly into a Java Locale instance. (Edit: or even simply into the "Language - ...
0
votes
0answers
13 views

convert case of wide characters, given the LCID (Visual C++)

I have some existing Visual C++ code where I need to add the conversion of wide character strings to upper or lower case. I know there are pitfalls to this (such as the Turkish "I"), but most of ...
0
votes
2answers
105 views

ASP.NET MVC LCID and Sessions

i have to short questions on ASP MVC. Where is the best place for setting on Session.LCID ? Thanks