Getting OS Language ??

  • Thread starter Thread starter Marcelo López
  • Start date Start date
M

Marcelo López

How can i obtain the language installed in the pc where my win app is
running ??

Regards

Marcelo López
Infocorp
Latin América
 
How can i obtain the language installed in the pc where my win app is
running ??

I think you could check the language version of a vital system component,
like shell32.dll.
Regards, Wiktor Zychla
 
And how can i do that ?

regards

Wiktor Zychla said:
I think you could check the language version of a vital system component,
like shell32.dll.
Regards, Wiktor Zychla
 
And how can i do that ?

FileVersionInfo class, Language field. check shell32.dll or winver.exe.
regards, Wiktor
 
How can i obtain the language installed in the pc where my win app is
running ??

Regards

Marcelo López
Infocorp
Latin América

System.Globalization
string strCurCulture = CulturInfo.CurrentCulture.ToString();

Hope this helps!

Matt
 
Check out the System.Globalization.CultureInfo class. I believe that will
get get you what you want.

HTH
Brian W
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

How to Execute a File ?? 1
Depply app with .NET 1
how to get OS Language ? 2
Folder Permissions 1
How to exeute a BAT ?? 1
How to execute a .BAT ?? 1
Deploy in .NET 2
how to confirm a command ?? 2

Back
Top