Outlook Banter

Outlook Banter (http://www.outlookbanter.com/)
-   Outlook and VBA (http://www.outlookbanter.com/outlook-vba/)
-   -   VBA Code to check Task Status (http://www.outlookbanter.com/outlook-vba/7381-vba-code-check-task-status.html)

[email protected] February 2nd 06 04:59 PM

VBA Code to check Task Status
 
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


Michael Bauer February 3rd 06 07:07 AM

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


[email protected] February 3rd 06 06:16 PM

VBA Code to check Task Status
 
Awesome! Thanks, I'll give that a try!


Melanie



All times are GMT +1. The time now is 03:54 PM.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2006 OutlookBanter.com