(Contents)(Previous)(Next)

SetNotes()

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

task.SetNotes "Some notes"


Next