IDatabaseVersion Property |
Namespace: SuperOffice.COM.SuperOfficeDB
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.
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