Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Need to read and write to Outlook 2000 Tasks
Message
From
29/04/2003 17:05:45
 
 
To
28/04/2003 19:02:04
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Miscellaneous
Thread ID:
00782524
Message ID:
00782923
Views:
14
>Hi,
>
>Can anyone point me in the right direction to reading and writing to the Task section of Outlook 2000.
>
>I have a need to check how many tasks have been allocated for a particular date, check that I am not duplicating a task and writing a new task if necessary.
>

Bob already pointed you to the book that Della Martin and I wrote. To get at the tasks in Outlook, you use code along these lines:

#DEFINE olFolderTasks 13
oOutlook = CreateObject("Outlook.Application")
oNS = oOutlook.GetNameSpace("MAPI")

oTasks = oNS.GetDefaultFolder( olFolderTasks )
oTaskItems = oTasks.Items

Now you can loop through the oTaskItems collection, reading and changing the tasks.

Tamar
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform