最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

excel - What is the "execution mode language" in Office? - Stack Overflow

matteradmin5PV0评论

Office VBA allows you to query the language used by a particular Office application. For example, executing:

? Application.LanguageSettings.LanguageID(msoLanguageIDUI)

in the immediate window will yield 1031 (German) on my system, since this is what I chose as my Office UI language.


The LanguageSettings.LanguageID property supports the following MsoAppLanguageID enum values as a parameter:

Name Value Description
msoLanguageIDExeMode 4 Execution mode language.
msoLanguageIDHelp 3 Help language.
msoLanguageIDInstall 1 Install language.
msoLanguageIDUI 2 User interface language.
msoLanguageIDUIPrevious 5 User interface language used prior to the current user interface language.
Post a comment

comment list (0)

  1. No comments so far