PC Review


Reply
Thread Tools Rate Thread

Default Reminder time for all day events

 
 
Maurene Garza
Guest
Posts: n/a
 
      11th Aug 2003
My default reminder time is set to 15 minutes, and it
works fine, EXCEPT if I select an all day event. In that
case, it defaults to 18 hours.

Is there a way to change this?

Outlook 2002, SP2
Desktop Windows NTSP6A
Novell Netware Servers
Libra with Saggitarius Rising
 
Reply With Quote
 
 
 
 
Jocelyn Fiorello [MVP - Outlook]
Guest
Posts: n/a
 
      12th Aug 2003
I believe that's the default behavior for Outlook 2002, and I don't
think there's a way to change it. (I'm with you, though...it annoys me
too.)

--
Jocelyn Fiorello
MVP - Outlook

*** Replies sent to my e-mail address will probably not be answered --
please reply only to the newsgroup to preserve the message thread. ***


"Maurene Garza" <(E-Mail Removed)> wrote in message
news:011801c36038$67c51470$(E-Mail Removed)...
> My default reminder time is set to 15 minutes, and it
> works fine, EXCEPT if I select an all day event. In that
> case, it defaults to 18 hours.
>
> Is there a way to change this?
>
> Outlook 2002, SP2
> Desktop Windows NTSP6A
> Novell Netware Servers
> Libra with Saggitarius Rising



 
Reply With Quote
 
New Member
Join Date: Dec 2007
Posts: 1
 
      4th Dec 2007
Quite often at 6 o'clock in the morning I was woken up because my phone remembered me of an appointment which will take place 18 hours later. This was quite annoying. I looked on the internet for a solution. Unfortunately I could not find any solution. Therefore I decided to write my own macro.

This is what it does: when outlook start, it checks all calendar items, if one of them has a reminder set to18 hours before, then the reminder is disabled

Running this script takes a few seconds (depending on the number of items in your calender) every time Outlook starts.

To install this script do the following:

  • In outlook type Alt-F11 (the VBA editor window will pop up).
  • Double click on Microsoft outlook Objects/ThisOutlookSession and copy/paste the following code in the right window:
Code:
‘This script was created by Ruut  Brandsma on 12/04/2007
    Private Sub Application_Startup()
    	Call Check_all_calender_items_and_disable_reminder_if_set_to_18_hours
    End Sub
  
    Sub Check_all_calender_items_and_disable_reminder_if_set_to_18_hours()
    	Set myNamespace = Application.GetNamespace("MAPI")
    	Set Application.ActiveExplorer.CurrentFolder = myNamespace.GetDefaultFolder(olFolderCalendar)
    	For Each item In Application.ActiveExplorer.CurrentFolder.Items
    		With item
    			If .Class = olAppointment Then
    			    If .ReminderMinutesBeforeStart = 18 * 60 And .ReminderSet Then
    				    .ReminderSet = False
    				    .Save
    			    End If
    			End If
    		End With
    	Next
    	Set Application.ActiveExplorer.CurrentFolder = myNamespace.GetDefaultFolder(olFolderInbox)
    End Sub
  • Close your outlook. Say yes to the save changes popup.
  • Restart outlook and during startup all calendar items are checked and if needed adjusted.
If you not want to disable the reminders, but only to adjust the reminder time from 18 hours to e.g. 15 hours, just replace ".ReminderSet = False" in the code above to ".ReminderMinutesBeforeStart = 15 * 60"

I used Outlook Profesiional 2003 to test the script, but might also work for other version.
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I set the time for a reminder for all day events LE Microsoft Outlook Calendar 1 12th Jun 2008 11:45 PM
How to set reminder events for non default calendar? Peter Marchert Microsoft Outlook VBA Programming 3 27th Jun 2007 09:15 PM
How do i set the default reminder for all day events in Outlook? =?Utf-8?B?UFQ=?= Microsoft Outlook Calendar 1 1st Jun 2005 03:19 PM
Re: Is it possible to change the default reminder in outlook for all day events? Abbos Microsoft Outlook Calendar 1 12th Aug 2004 10:05 AM
Re: Change default reminder for ALL DAY EVENTS Sue Mosher [MVP] Microsoft Outlook Calendar 0 30th Aug 2003 03:03 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:50 PM.