(Contents)(Previous)(Next)

GetResources()

Description: Returns the list of resources belonging to this group.
Syntax: object.GetResources()
Parameters:
object Required, the Group object
Remarks: This method returns the list of resources belonging to the group.
Returns: A Resource list object
Example:
Dim session As Object

Set session = CreateObject("OfficeTalk.Session")

Call session.Logon(login name, password)

Set group = session.GetGroups.GetFirst

Set resources = group.GetResources

Set resource = resources.GetFirst


Next