IDatabaseGetResourceList Method |
Namespace: SuperOffice.COM.SuperOfficeDB
Get the resourcelist
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
dim objso dim objlistitems set objso = CreateObject("superofficedb.database") If not (objSO is nothing) Then objso.login "<username>", "<password>" set objlistitems = objso.getresourcelist for each item in objlistitems msgbox item.text next else msgbox "unable to connect to database" end if set objso = nothing