- Joined
- May 18, 2009
- Messages
- 4
- Reaction score
- 0
Hi,
i'm trying to write a macro on thisoutlooksession to trap ReminderFire event to change the task olimportance (only for the task that fire) from normal to high...
something like
'<<ThisOutlookSession>>
Dim WithEvents ReminderFire As Outlook.Reminders
Private Sub objReminders_ReminderFire(ByVal ReminderObject As Reminder)
task.Importance = olImportanceHigh
task.Save
End Sub
but nothing appened. I try several other methods but with no result.
i'm trying to write a macro on thisoutlooksession to trap ReminderFire event to change the task olimportance (only for the task that fire) from normal to high...
something like
'<<ThisOutlookSession>>
Dim WithEvents ReminderFire As Outlook.Reminders
Private Sub objReminders_ReminderFire(ByVal ReminderObject As Reminder)
task.Importance = olImportanceHigh
task.Save
End Sub
but nothing appened. I try several other methods but with no result.