How to determine the language of MS Excel

I'm trying to figure out a way to detect the language of the installed version of Excel (ideally from C ++). I need this to solve a problem with computers where Excel language is different from Windows language (see this issue ).

+2


a source to share


1 answer


Using automation, the app LanguageSettings

gives you the following:



Application.LanguageSettings.LanguageID(msoLanguageIDUI)

      

+4


a source







All Articles