(Contents)(Previous)(Next)

SetNotes()

Description: Sets the notes of the appointment
Syntax: object.SetNotes(sText)
Parameters:
object Required, the Appointment object
sText A string representing the appointment notes
Remarks: Sets the notes of the appointment. 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 appt = user.Appointments.getfirst

appt.SetNotes "Some notes"


Next