Click or drag to resize

IDatabaseGetLocationList Method

Returns a list of resources that are locations New in Seven.

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
IListTextItems GetLocationList()

Return Value

Type: IListTextItems
Examples
VB
'Will get all resource items marked as Location
set objso = CreateObject("superofficedb.database")
If not (objSO is nothing) then
    objso.login "ADM0", ""
    set objLocations = objso.getlocationlist()
    for each item in objLocations

        msgbox item.text
    next
else
    msgbox "unable to connect to database"
end if
set objso = nothing
See Also