(Contents)(Previous)(Next)

SetContact(contact As Object)

Description: Associates the conversation with the passed in contact.
Syntax: object.SetContact(contact)
Parameters:
object Required, the Conversation object
company The contact to associate with the conversation.
Remarks: This method associates this conversation with the passed in contact. This means that the conversation will appear as a history item against the passed in contact.
Returns: Nothing
Example:
Dim session As Object

Set session = CreateObject("OfficeTalk.Session")

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

Set conv = session.GetConversations.GetFirst

Set cont = session.GetCompanies.GetFirst

Call conv.SetContact(cont)


Next