(Contents)(Previous)(Next)

GetTasks()

Description: Gets the list of tasks belonging to the project
Syntax: object.GetTasks()
Parameters:
object Required, the Project object
Remarks: This method returns the list of tasks belonging to the project.
Returns: Task List object
Example:
Dim session As Object

Set session = CreateObject("OfficeTalk.Session")

Call session.Logon(login name, password)

Set project = session.GetProjects.GetFirst

Set tasks = project.GetTasks

Set task = tasks.GetFirst

MsgBox task.Name


Next