Switch between Languagges

  • Thread starter Thread starter helmekki
  • Start date Start date
H

helmekki

Hi

Is there a code to switch between Languagges ?

that is used to write within Excel sheet


Thank u :rolleyes
 
With VBA you can (and should) write to the (standard)
USenglish properties like Formula and FormulaR1C1.

You could also write to FormulaLOCAL and FormulaR1C1Local
and use things like AddressLocal.. but I STRONGLY advise against it.
as you'd need to code for all possible languages

You might want to read this article on MSDN..

Writing Code for International Use
http://msdn.microsoft.com/library/default.asp?url=/library/en-
us/dno97ta/html/msdn_intlcode.asp



In a multilanguage Excel setup (with multiple language for menu's
and help) you HAVE to use the Office Language Selector to change
those settings, and Excel must be restarted in order to reinitialize
itself with the proper localized DLL's

In case you mean the spelling options and language settings (as you can
change with WindowsXP language bar...

see:
Range Object
.CheckSpelling (range object)

Application object
.SpellingOptions
.DictLang = 1036
.UserDict = "CUSTOM.DIC"

'Thse apply to installs.. (see above)
.LanguageID (READONLY)
.LanguageSettings
.LanguagePreferredForEditing(msoLanguageIDEnglishUS)



keepITcool

< email : keepitcool chello nl (with @ and .) >
< homepage: http://members.chello.nl/keepitcool >
 

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