次の方法で共有


Application.Reminder Event (Outlook)

Occurs immediately before a reminder is displayed.

Syntax

expression .Reminder(Item)

expression A variable that represents an Application object.

Parameters

Name

Required/Optional

Data Type

Description

Item

Required

Object

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 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 = Outlook.Application 
 
End Sub 
 
 
 
Private Sub myolapp_Reminder(ByVal Item As Object) 
 
 Item.Display 
 
End Sub

See Also

Concepts

Application Object Members

Application Object