IDatabaseGetList Method |
Returns IListTextItems containing all the items in the given table, filtered and grouped according to the current user's group, but without the headings.
Note that items that are repeated under more than one heading will be repeated in the list.
Namespace: SuperOffice.COM.SuperOfficeDB
Get information from the DocTmpl table
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.getlist(130) for each item in objlistitems msgbox item.text next else msgbox "unable to connect to database" end if set objso = nothing