Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

language of MS WORD

Status
Not open for further replies.

davikokar

Technical User
May 13, 2004
523
IT
Hallo,

how can I find out the language of my installation of WORD ? Thanks
 
Test the value of Application.Language

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
What version of Word?

In theory there should be no difference between an installation in a langauge, and an installation in a different language with a language pack for the first language, so what language do you see in the UI?

In VBA you can use:
Code:
[blue]Application.LanguageSettings.LanguageID(msoLanguageIDInstall)[/blue]

Enjoy,
Tony

------------------------------------------------------------------------------------
We want to help you; help us to do it by reading this: Before you ask a question.

I'm working (slowly) on my own website
 
Hi karerda,

Are you referring to the installation language, which determines what's shown on the menus, or the spell-check language?

The former, you can test via a macro:
Code:
Sub AppLanguage()
MsgBox Application.Language
End Sub
This returns a language ID code. You can find the corresponding language name via the vba Object Browser.

The spell-check language can be found via Tools|Language|Set Language, though you could use vba for that too if need be.

If


Cheers
[MS MVP - Word]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top