(Contents)(Previous)(Next)

GetMeetings()

Description: Returns a list of Meetings to which the current user has access. The list may be used for subsequent iteration.
Syntax: object.GetMeetings
Parameters:
object Required, the Session object
Remarks: This function returns a new Meetings object to the caller. The list may be subsequently iterated using GetFirst(), GetNext(), GetLast(), GetPrev().
Returns: Returns a Meetings object.
Example:
Dim session As Object

Dim meetings As Object

Set session = CreateObject("OfficeTalk.Session")

Set user = session.Logon(login name, password)

Set meetings = session.GetMeetings


Next