(Contents)(Previous)(Next)

GetNotes()

Description: Gets the notes associated with the contact
Syntax: object.GetNotes
Parameters:
object Required, the Contact object
Remarks: This function returns the contact's notes as a plain text string.
Returns: The contact notes
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

MsgBox cont.GetNotes


Next