Click or drag to resize

ISettingsLanguageCode Property

Default language code for the SuperOffice client (this information is stored in a local file on the computer, named souser.ini) - does not require login

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
string LanguageCode { get; }

Property Value

Type: String
String – the default language code
Examples

LanguageCode

This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.

VB
Dim objSO
Dim objSettings
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
    Set objSettings = objSO.Database.Settings
    MsgBox "Users SuperOffice language: " & objSettings.Languagecode, vbInformation + vbOkOnly, "SuperCOM" 
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also