0
在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分鐘被解僱。
如何從提醒中獲得實際的約會/會議時間?