This function returns the user interface language of the current configuration.
object.GetUILanguage()
| Part | Attribute | Type | Description |
|---|---|---|---|
object |
Required | The object always implements the
ISLanguageUtils interface |
string
Display some information about the current configuration, including the user interface language.
Dim aLanguageUtils
Dim aMessage
Set aLanguageUtils = Profile.LanguageUtils
aMessage =_
aLanguageUtils.FormatStr2("The current configuration has ""%0:s"" UI language and ""%1:s"" DB language",_
aLanguageUtils.GetUILanguage, aLanguageUtils.GetDBLanguage)
Profile.MsgBox(aMessage)