A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

VBA Code to check Task Status



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old February 2nd 06, 04:59 PM posted to microsoft.public.outlook.program_vba
[email protected]
external usenet poster
 
Posts: 2
Default 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

  #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

  #3  
Old February 3rd 06, 06:16 PM posted to microsoft.public.outlook.program_vba
[email protected]
external usenet poster
 
Posts: 2
Default VBA Code to check Task Status

Awesome! Thanks, I'll give that a try!


Melanie

 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Other Address Status steve Outlook Express 3 February 28th 06 04:58 PM
how to apply vba code to OL2003 forms ? TimR Outlook - Using Contacts 1 February 17th 06 04:41 PM
how do I see attendee status zzsanjay Outlook - Calandaring 0 February 1st 06 05:07 PM
code : Code : 800cccd2 scotty971fr Outlook Express 1 January 19th 06 11:59 PM
Running query from Access Form commmand using VBA code Berny Outlook and VBA 4 January 16th 06 02:12 PM


All times are GMT +1. The time now is 03:56 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-2025 Outlook Banter.
The comments are property of their posters.