Click or drag to resize

IDatabaseGetExternalPersonList Method

Returns a list of all external users (associate.type=4)

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
SOAssociates GetExternalPersonList()

Return Value

Type: SOAssociates
Examples

List all external persons

VB
dim objSO

set objSO = createobject("SuperOfficeDB.Database") 
If not (objSO is nothing) Then
    objSO.login "<username>", "<password>" 
    Set myExtAssocs = objSO.GetExternalPersonList 
    For Each myAssoc In myExtAssocs
        msg = msg & myAssoc.FullName & vbCrLf
    Next
    msgbox msg, vbInformation, "SuperCOM"
else
    msgbox "Unable to log in"
end if
set objSO = Nothing

See Also