(Contents)(Previous)(Next)

GetCompany()

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

Set session = CreateObject("OfficeTalk.Session")

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

Set conv = session.GetConversations.GetFirst

Set comp = conv.GetCompany


Next