共用方式為


Outlook) (Reminders.ReminderChange 事件

修改提醒之後發生。

語法

expressionReminderChange( _ReminderObject_ )

表達 代表 Reminders 物件的 變數。

參數

名稱 必要/選用 資料類型 描述
ReminderObject 必要 Reminder 已修改的 Reminder 物件。

範例

下列 Microsoft Visual Basic for Applications (VBA) 範例會在每次修改提醒時向使用者提示訊息。

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

另請參閱

Reminders 物件

支援和意見反應

有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應