Click or drag to resize

ISettingsOutlookSynchronizerUsers Property

Number of Outlook Synchronizer user licenses (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 OutlookSynchronizerUsers { get; }

Property Value

Type: Int32
Examples

Outlook Synchronizer Users

VB
Dim objSO
Dim a
Dim objSettings
Set objSO = CreateObject("SuperOfficeDB.Database")

If Not (objSO Is Nothing) Then
    a = objSO.Login("<userID>", "<password>")
    Set objSettings = objSO.Database.Settings
    MsgBox "Number of Outlook Synchronizer users: " & objSettings.OutlookSynchronizerUsers

Else
    MsgBox "Unable to connect to database"
End If

Set objSO = Nothing

See Also