(Contents)(Previous)(Next)

SetNotes()

Description: Sets the notes of the contact
Syntax: object.SetNotes(sText)
Parameters:
object Required, the Contact object
sText A string representing the contact notes
Remarks: Sets the notes of the contact. Handles plain text. Rich text is not supported.
Returns: Nothing
Example:
Dim session As Object

Dim user As Object

Set session = CreateObject("OfficeTalk.Session")

Call session.Logon(login name, password)

set cont = session.GetContacts.getfirst

cont.SetNotes "Some notes"


Next