Reminders.ReminderChange event (Outlook)

Occurs after a reminder has been modified.

Syntax

expression. ReminderChange( _ReminderObject_ )

expression A variable that represents a Reminders object.

Parameters

Name Required/Optional Data type Description
ReminderObject Required Reminder The Reminder object that has been modified.

Example

The following Microsoft Visual Basic for Applications (VBA) example prompts the user with a message every time a reminder is modified.

Public WithEvents objReminders As Outlook.Reminders 
 
 
 
Sub Initialize_handler() 
 
 Set objReminders = Application.Reminders 
 
End Sub 
 
 
 
Private Sub objReminders_ReminderChange(ByVal ReminderObject As Reminder) 
 
 'Occurs when reminder is changed 
 
 MsgBox "The reminder " & ReminderObject.Caption & " has changed." 
 
End Sub

See also

Reminders Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.