在ThisOutlookSession
中,我为提醒添加了代码:
Private Sub obj_ReminderFire(ByVal ReminderObject As Reminder)
If (ReminderObject.Caption = "Daily Update") then
' Do some thing.
' Check if the reminder is for today only
If (ReminderObject.OriginalReminderDate = Now) Then
'Do more things
end if
end if
end sub
由于我的提醒设置为在事件前 15 分钟发出警报,因此事件在 15 分钟前触发。
如何从提醒中获取实际的约会/会议时间?