M Marcelo López Jan 27, 2004 #1 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 ?? Regards Marcelo López Infocorp Latin América
W Wiktor Zychla Jan 27, 2004 #2 How can i obtain the language installed in the pc where my win app is running ?? Click to expand... I think you could check the language version of a vital system component, like shell32.dll. Regards, Wiktor Zychla
How can i obtain the language installed in the pc where my win app is running ?? Click to expand... I think you could check the language version of a vital system component, like shell32.dll. Regards, Wiktor Zychla
M Marcelo López Jan 27, 2004 #3 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 Click to expand...
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 Click to expand...
W Wiktor Zychla Jan 27, 2004 #4 And how can i do that ? FileVersionInfo class, Language field. check shell32.dll or winver.exe. regards, Wiktor
And how can i do that ? FileVersionInfo class, Language field. check shell32.dll or winver.exe. regards, Wiktor
M Matthias Kwiedor Jan 27, 2004 #5 How can i obtain the language installed in the pc where my win app is running ?? Regards Marcelo López Infocorp Latin América Click to expand... System.Globalization string strCurCulture = CulturInfo.CurrentCulture.ToString(); Hope this helps! Matt
How can i obtain the language installed in the pc where my win app is running ?? Regards Marcelo López Infocorp Latin América Click to expand... System.Globalization string strCurCulture = CulturInfo.CurrentCulture.ToString(); Hope this helps! Matt
B Brian W Jan 27, 2004 #6 Check out the System.Globalization.CultureInfo class. I believe that will get get you what you want. HTH Brian W
Check out the System.Globalization.CultureInfo class. I believe that will get get you what you want. HTH Brian W