(Contents)(Previous)(Next)

GetNotes()

Description: Gets the notes associated with the company
Syntax: object.GetNotes
Parameters:
object Required, the Company object
Remarks: This function returns the company's notes as a plain text string.
Returns: The company notes
Example:
Dim session As Object

Dim user As Object

Set session = CreateObject("OfficeTalk.Session")

Call session.Logon(login name, password)

set comp = session.GetCompanies.getfirst

MsgBox comp.GetNotes


Next