importing reminders from outlook into an excel calendar template

  • Thread starter Thread starter Guest
  • Start date Start date
Reminders aren't separate items, they are a property (ReminderSet) of items.
That property is available in the Outlook object model for mail, task and
appointment items. For contacts you'd have to use undocumented property tags
with CDO 1.21 or Extended MAPI or Redemption (www.dimastr.com) to read the
ReminderSet property. Additional properties are available for when the
reminder is due to fire.

You'd have to write code to iterate every folder's Items collection where
items with reminders might live and get the items with ReminderSet = True
and then export them into Excel.
 
Back
Top