Language version...

G

Guest

Does anyone know how to determine the difference between the language
versions of windows XP?
I have 600 pc's with a mix of english and french licenses purchased and
there is a different media set for each. I am trying to figure out what is
different about the 2 installs.

any ideas?
 
M

Mark L. Ferguson

Remote scripting will call the 'locale' of the system keyboard.
Sub test()
lKeyboardValue = 0
lResp = GetKeyboardLayout(lKeyboardValue)
lLangCode = LowWord(lResp)
Select Case lLangCode
Case 1033
strLang = "US - English"
Case 1036
strLang = "France - French"

Case Else
strLang = "Not listed"
End Select
MsgBox "The Keyboard language is: " & lLangCode & ": " & strLang
End Sub
 
A

Alex Nichol

Ted said:
Does anyone know how to determine the difference between the language
versions of windows XP?
I have 600 pc's with a mix of english and french licenses purchased and
there is a different media set for each. I am trying to figure out what is
different about the 2 installs.

Code that contains text - menus, dialogs etc - is localised in the
language of the version. And there may be other differences in code to
match the language. The versions are not interchangeable or mixable on
the same machine (other than by a dual boot installation in separate
partitions)
 

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

Top