Click or drag to resize

ISettingsSyncEngineUsers Property

Number of users allowed using Sync engine (based on SuperOffice license data). Requires login

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

Property Value

Type: Int32
Long – the number of users
Examples

SyncEngineUsers

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

VB
Dim objSO
Set objSO = CreateObject("SuperOfficeDB.Database")
If not (objSO is nothing) Then
    objSO.login "USERNAME", "PASSWORD"
    msg = msg & "Number of Sync engine users " & objSO.Settings.SyncEngineUsers & vbcrlf
    msg = msg & "Number of windows client users " & objSO.Settings.WindowsClientUsers & vbcrlf
    msg = msg & "Number of total logins " & objSO.Settings.TotalLogins & vbcrlf
    msg = msg & "Location of SuperOffice logfile " & objSO.Settings.SuperOfLogPath & vbcrlf
    msg = msg & "Number of Outlook Mail Link sites " & objSO.Settings.OutlookMailLinkSites & vbcrlf
    msg = msg & "Number of Notes Link sites " & objSO.Settings.NotesLinkSites & vbcrlf
    msg = msg & "License expires " & objSO.Settings.ExpirationDate & vbcrlf
    msgbox msg
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also