A
Art
I created some user defined filelds when setting up tasks in Outlook.
Access to the standard members of the TaskItem Class type is easy
enough but I would like to know which member to use to identify my
created fields.
Following is an extract of my code - I would like to identify and
place a new field I called "Projects" into the next column.
Many thanks in advance.
For Each olTsk In Fldr.Items
ActiveSheet.Cells(i, 1).Value = olTsk.Role
ActiveSheet.Cells(i, 2).Value = olTsk.Subject
ActiveSheet.Cells(i, 3).Value = olTsk.StartDate
i = i + 1
Debug.Print i
Next olTsk
Access to the standard members of the TaskItem Class type is easy
enough but I would like to know which member to use to identify my
created fields.
Following is an extract of my code - I would like to identify and
place a new field I called "Projects" into the next column.
Many thanks in advance.
For Each olTsk In Fldr.Items
ActiveSheet.Cells(i, 1).Value = olTsk.Role
ActiveSheet.Cells(i, 2).Value = olTsk.Subject
ActiveSheet.Cells(i, 3).Value = olTsk.StartDate
i = i + 1
Debug.Print i
Next olTsk