(Contents)(Previous)(Next)

GetNotes()

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

MsgBox appt.GetNotes


Next