views:

269

answers:

1

I'm using a recurring task to trigger a macro in Outlook, using the Application_Reminder hook.

However when the task fires, I want to suppress the Reminder dialog box which normally appears (where there are Dismiss/Snooze etc buttons).

Is there a way to do this? Have tried

Item.ReminderTime = DateAdd("h", 1, Now)

which does work, but causes the task time to move forward, whereas I want it to remain at a fixed time.

Many thanks for any suggestions.

A: 

See the posts in the Add-In Express forum in which the BeforeReminderShow event is proposed as a solution. It seems the event is a custom event, part of an add-in.

Geoffrey Van Wyk