Reminder Event

Microsoft Outlook Visual Basic

Occurs immediately before a reminder is displayed.

Sub object_Reminder(ByVal Item As Object)

object    An expression that evaluates to an Application object.

Item       The AppointmentItem, MailItem, ContactItem, or TaskItem associated with the reminder. If the appointment associated with the reminder is a recurring appointment, Item    is the specific occurrence of the appointment that displayed the reminder, not the master appointment.

Example

This Microsoft Visual Basic/Visual Basic for Applications (VBA) example displays the item that fired the Reminder event when the event fires. The sample code must be placed in a class module, and the Initialize_handler routine must be called before the event procedure can be called by Microsoft Outlook.

Dim WithEvents myolapp As Outlook.Application

Sub Initialize_handler()
	Set myolapp = CreateObject("Outlook.Application")
End Sub

Private Sub myolapp_Reminder(ByVal Item As Object)
	Item.Display
End Sub