Click or drag to resize

ISettingsSerialNumber Property

Database serial number, this is a globally unique number for this database (and its siblings). Requires login

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

Property Value

Type: String
String – the systems serial number
Examples

SerialNumber

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 "Serial number: " & objSettings.SerialNumber
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also