![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
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. |
Ads |
#2
|
|||
|
|||
![]() |
#3
|
|||
|
|||
![]()
Thanks for responding. I guess it's a feature, not an option.
"Brian Tillman" wrote: Debbie Schreck Debbie wrote: 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. -- Brian Tillman |
#4
|
|||
|
|||
![]()
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 "Debbie Schreck" wrote: Thanks for responding. I guess it's a feature, not an option. "Brian Tillman" wrote: Debbie Schreck Debbie wrote: 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. -- Brian Tillman |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Snooze default for reminders in Outlook - How to change? | Dana | Outlook - Calandaring | 3 | August 16th 06 11:39 PM |
Outlook 2003 snooze popup | Phill | Outlook - Calandaring | 3 | May 12th 06 07:55 AM |
forward button takes extremely long time to change screen | sasamson | Outlook - Installation | 0 | March 14th 06 07:06 AM |
on Outlook Calendar can I change snooze default to a longer time? | DougB | Outlook - Calandaring | 1 | February 23rd 06 08:41 PM |
Calendar Snooze | MarkC | Outlook - General Queries | 3 | February 3rd 06 04:07 PM |