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.