Click or drag to resize

IDatabaseVersion Property

Returns the Version as a decimal (e.g. 5.6 or 6.0)

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

Property Value

Type: Single
Single – the main version number of the SuperOffice Software
Examples

Get the version number of CRM

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

See Also