change snooze button default

G

Guest

When a message reminder comes up the snooze button is always set to remind me
5 minutes before the start of the meeting. Is there a way to change that
default? I want the snooze button to remind me every 30 minutes, not 5
minutes before the meeting.
 
B

Brian Tillman

Debbie Schreck said:
When a message reminder comes up the snooze button is always set to
remind me 5 minutes before the start of the meeting. Is there a way
to change that default? I want the snooze button to remind me every
30 minutes, not 5 minutes before the meeting.

I don't think there's a way to change that default.
 
G

Guest

Right from the Outlook vb userguide, you can dismiss all reminders for x
minutes using this code they've provided:

Example
The following Microsoft Visual Basic/Visual Basic for Applications (VBA)
example delays all active reminders by a specified amount of time.

Sub SnoozeReminders()
'Delays all reminders by a specified amount of time

Dim olApp As Outlook.Application
Dim objRems As Outlook.Reminders
Dim objRem As Outlook.Reminder
Dim varTime As Variant

Set olApp = New Outlook.Application
Set objRems = olApp.Reminders
varTime = InputBox("Type the number of minutes to delay")

For Each objRem In objRems
If objRem.IsVisible = True Then
objRem.Snooze (varTime)
End If
Next objRem

End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top