ISettingsCurrentArchivePath Property |
Namespace: SuperOffice.COM.SuperOfficeDB
CurrentArchivePath
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 "<USERID>", "<PASSWORD>" msgbox "Current data source: " & objSO.Settings.CurrentDataSource, vbInformation + vbOKOnly, "SuperCOM" msgbox "Current archive path: " & objSO.Settings.CurrentArchivepath, vbInformation + vbOKOnly, "SuperCOM" else MsgBox "Unable to connect to database" end if Set objSO = Nothing