Click or drag to resize

IDatabaseRevision Property

Returns the Revision number (e.g release 5.6.30 returns 30)

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

Property Value

Type: Int32
Long – the revision number of the SuperOffice Software.
Examples

Get the revision number

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>"
    msgbox  objso.revision
else
    msgbox  "unable to connect to database"
end if
set objso = nothing

See Also