View Single Post
  #1  
Old December 15th 08, 03:10 PM posted to microsoft.public.outlook.program_vba
Markus Zbinden
external usenet poster
 
Posts: 2
Default Changes in Tasks

Hello,

I would like to replace text in the body of tasks. If the tasks are in an
outlook folder, i know how to do it:

Set myNameSpace = myOlApp.GetNamespace("MAPI")
Set myFolder = myNameSpace.GetDefaultFolder(olFolderTasks)
Set olTaskItem = myFolder.Items

For i = olTaskItem.Count To 1 Step -1
....
Next

But the tasks are saved in a directory (\\server\test\) as *.msg-Files...
i don't see the solution.

Thanks, Markus
Ads