Occurs when a Reminder object has been removed from the collection.
Private Sub expression_ReminderRemove( )
expression A variable which references an object of type Reminders declared with events in a class module.
A reminder can be removed from the Reminders collection by any of the following means:
The following example displays a message to the user when a Reminder object is removed from the collection.
Private Sub objReminders_ReminderRemove()
'Occurs when a reminder is removed from the collection
'or the user clicks Dismiss
MsgBox "A reminder has been removed from the collection."
End Sub