(Contents)(Previous)(Next)

GetNotes()

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

Dim user As Object

Set session = CreateObject("OfficeTalk.Session")

Call session.Logon(login name, password)

set task = user.tasks.getfirst

MsgBox task.GetNotes


Next