Each of the To Do Items.
object.Item(aIndex)
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISToDoItems interface |
|
aIndex |
In, Required | int |
The index of the item in the list |
Display the number of To Do Items loaded on the basis of the selected filter and their types.
Dim aFilters
Dim aFilter
Dim aToDoItems
Dim aToDoItem
Dim aMessage
Set aFilters = Profile.GetToDoFilters
set aFilter = aFilters.ToDoListFilter(0)
aFilter.MaxNumber = 6
aFilter.StartFrom = 1
set aToDoItems = Profile.LoadToDoItems(aFilter)
aMessage = "To Do Items Count = " & aToDoItems.Count
for i = 0 to aToDoItems.Count - 1
set aToDoItem = aToDoItems.Item(i)
aMessage = aMessage & vbNewLine & "The type of To Do Item: " & aToDoItem.ToDoType
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface To Do Items can be found in
.