(Contents)(Previous)(Next)

SetNotes()

Description: Sets the notes of the company
Syntax: object.SetNotes(sText)
Parameters:
object Required, the Company object
sText A string representing the company notes
Remarks: Sets the notes of the company. 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 comp = session.GetCompanies.getfirst

comp.SetNotes "Some notes"


Next