Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Outlook / Programming VBA / September 2006

Tip: Looking for answers? Try searching our database.

Application_Reminder Problem

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Joerg Fuhrmann - 29 Sep 2006 15:36 GMT
I wrote a Application_Reminder Routine that sends an email if the tasks
that fires this event has a certain subject. When i have two or more
Tasks at the same day the reminder pops up and lists the different
Items inside this reminder window. So far, so good, but how could my
code get access to the different items that appear in the reminder
window?
Eric Legault [MVP - Outlook] - 29 Sep 2006 16:20 GMT
Use the Application.Reminders collection, which contains all active
reminders.  Those that due will have the IsVisible property set to True
(which means those will be the ones listed in the Reminders window; the rest
have been dismissed or their reminder date is not due yet).

   Dim objRems As Outlook.Reminders
   Dim objRem As Outlook.Reminder
   Dim intX As Integer
   
   Set objRems = Application.Reminders
   
   For intX = 1 To objRems.count
       Set objRem = objRems.Item(intX)
       Debug.Print objRem.Caption; "; Visible: " & objRem.IsVisible
   Next

Signature

Eric Legault (Outlook MVP, MCDBA, MCTS: Messaging & Collaboration)
Try Picture Attachments Wizard for Outlook:
http://www.collaborativeinnovations.ca
Blog: http://blogs.officezealot.com/legault/

> I wrote a Application_Reminder Routine that sends an email if the tasks
> that fires this event has a certain subject. When i have two or more
> Tasks at the same day the reminder pops up and lists the different
> Items inside this reminder window. So far, so good, but how could my
> code get access to the different items that appear in the reminder
> window?
Joerg Fuhrmann - 29 Sep 2006 20:25 GMT
Thx for your fast answer, i'll try it....
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.