(Contents)(Previous)(Next)

GetUser()

Description: Returns the user that is associated with the conversation.
Syntax: object.GetUser()
Parameters:
object Required, the Conversation object
Remarks: This method returns the user that is associated with the conversation.
Returns: A User object
Example:
Dim session As Object

Set session = CreateObject("OfficeTalk.Session")

Call session.Logon(login name, password)

Set conv = session.GetConversations.GetFirst

Set user = conv.GetUser


Next