View Single Post
  #2  
Old February 3rd 06, 07:07 AM posted to microsoft.public.outlook.program_vba
Michael Bauer
external usenet poster
 
Posts: 435
Default VBA Code to check Task Status

Am 2 Feb 2006 08:59:16 -0800 schrieb :

Dim oTask as Outlook.TaskItem
Dim obj as Object

For Each obj in Application.Session.GetDefaultFolder(olFolderTask) .Items
If TypeOf obj Is Outlook.TaskItem then
Set oTask=obj
If oTask.Complete = False Then
MsgBox "Another no completed task, subject: " & oTask.Subject
Endif
Endif
Next

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
--
www.vbOffice.net --


Hi

What I'm looking for is some code I can run that will run through my
task list and notify me of any tasks that are not complete.

I'm not sure where to start. Can anyone give me any pointers.


Thanks in advance.


Melanie

Ads