Click or drag to resize

ISettingsNetServerEAILicense Property

Is NetServer System user allowed? OBSOLETE. Always true Requires login

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

Property Value

Type: Boolean
Examples

NetServer EAI License

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 "Is there a NetServer EAI licenses: " & objSettings.NetServerEAILicense

Else
    MsgBox "Unable to connect to database"
End If

Set objSO = Nothing

See Also