Click or drag to resize

ISettingsReporterUsers Property

Number of reporter users allowed to login (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 ReporterUsers { get; }

Property Value

Type: Int32
Long – the number of users allowed
Examples

ReporterUsers

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 "Number of reporter users: " & objSettings.ReporterUsers, vbInformation + vbOkOnly, "SuperCOM" 
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also