How to determine regional setting language?

  • Thread starter Thread starter Bobby
  • Start date Start date
B

Bobby

Is it possible to determine with VBA the regional and language
options/setting? Thank's ahead.
 
Take a look at the language settings object in VBA. Something like
this:

Set objLangSet = Application.LanguageSettings
MsgBox objLangSet.LanguageID(msoLanguageIDInstall)
 

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

Back
Top