(Contents)(Previous)(Next)

Overdue (property)

Description: True if this task is overdue. You may mark a task as overdue by setting this property. You may both set and get this property.
Type: Boolean
Default: False
Example:
Dim session As Object

Dim user As Object

Dim tasks As Object

Dim task As Object

Set session = CreateObject("OfficeTalk.Session")

Set user = Call session.Logon(login name, password)

Set tasks = user.tasks

Set task = tasks.Add

task.Overdue = True

If task.Overdue Then

MsgBox "This task is overdue"

End If


Next