Search notes:

Outlook Object Model: Reminder

Properties and methods

application
caption
class
dismiss() Dismisses an active (i.e. visible) reminder.
isVisible This boolean property seems to be true when the corresponding object is active (which is the case, as I intepret it, when it is not in the future)
item
nextReminderDate
originalReminderDate
parent
session
snooze() Delays the reminder by a given amount of time.

Looping over reminders

option explicit

sub main()

   dim rmd as reminder
   for each rmd in application.reminders
        debug.print rmd.caption & ": " & rmd.isVisible & ", " & typename(rmd.item)
   next rmd

end sub
Github repository about-MS-Office-object-model, path: /Outlook/Reminder/loop.vb

See also

The appointmentItem object.

Index