Hi how to get the language name,how to find the language that the OS is installed say eg : If the OS is Japaness then i should display the language "Japanness"
A:
According to MSDN you need to use GetUserDefaultLCID function for this.
Naveen
2010-02-09 11:10:55
hi plz will give me a sample code that i can get more clear,any example
john
2010-02-09 11:16:02
I think you mean `GetUserDefaultLocaleName()`. The LCID one won't give you a _name_ but a _number_. `GetUserDefaultLocaleName()` will directly put the locale name into the buffer provided.
MSalters
2010-02-12 12:35:14