Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Exchange information within Foxpro
Message
From
17/11/2004 04:50:16
Jon Neale
Bond International Software
Wootton Bassett, United Kingdom
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00961701
Message ID:
00962067
Views:
27
This message has been marked as the solution to the initial question of the thread.
Hi Neil,

Sorry, I sort of misunderstood what you wanted.

I have converted this from a VB script I use to check tasks held in a Public Folder in Outlook. Hopefully it may give you a few pointers on what you need to do.

* Obtain a reference to Outlook
objOL = CREATEOBJECT( [Outlook.Application] )

* Select the task folder
objFolder = objOL.Session.Folders("Public Folders").Folders("All Public Folders").Folders("R&D").Folders("PPWin")

IF TYPE("objFolder") = "O"

For Each objItem In objOL.ActiveExplorer.CurrentFolder.Items
* loop though the items and display the task subject
? objItem.subject
Next objItem
ENDIF

HTH

Jon
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform