Poll: Do you have problems 'invisible' reminders in Outlook?

Results 1 to 3 of 3

Thread: Outlook, Reminders, and Windows 7

  1. #1
    Forum Admin's Avatar
    Forum Admin is offline Administrator Outlook 2010 64 bit
    Exchange Server account
    Join Date
    Jun 2009
    Posts
    1,147

    Default Outlook, Reminders, and Windows 7

    Do you have problems seeing Outlook reminders because they don't come up "in your face" on Windows 7?

    A few people have told me its a problem on Windows XP too, but I don't recall it being as bad as it is with Outlook 2010 on Windows 7 - I miss more meetings since switching to Outlook 2010 than i ever did before.

    Because I can't count on seeing Outlook reminders, I either write the meetings on post it notes and stick them to my monitor, or if i have a lot of meetings scheduled, i print out my daily calendar and tape it to the monitor.

    What methods do you use to avoid missing meetings?

    *** As with all of our polls, voting is open to everyone, but you need to be registered to leave a comment.
    Last edited by Forum Admin; 01-23-2011 at 09:20 AM.

  2. #2
    LennyTheComputerGuy is offline Junior Member
    Join Date
    Jan 2011
    Posts
    1

    Default Re: Outlook, Reminders, and Windows 7

    Call me old school but I'm still using OL2003 on an XP and a Vista computer and I get the pop up windows on my screen and the orange flashing in my task bar. I did change the sound for the reminder to be more than just the "ding", to make sure I pay attention to the alert. I also set the reminder to pop up earlier than I actually *need* it to remind me and then I hit the snooze button after changing the time I want it to snooze for. This double-reminder usually makes sure I don't *forget* an appointment.

    I should add that I regularly change the sounds for my various reminders since we all get use to sounds we hear to regularly... like some people can live next to an airport or train tracks and get use to that racket. I find that George Carlin screaming out some obscene reminder works best... in my home office. :-) Maybe not in a *normal* office environment. There are thousands of funny to more serious .wav files that can be downloaded and used instead of the default choices.
    Last edited by LennyTheComputerGuy; 01-25-2011 at 02:48 PM. Reason: added 2nd paragraph

  3. #3
    Darth Andy's Avatar
    Darth Andy is offline Junior Member Outlook 2010 32 bit
    account
    Join Date
    Jul 2009
    Posts
    7

    Lightbulb Re: Outlook, Reminders, and Windows 7

    Forcing a popup with a bit of VB might work:

    Code:
    Private Sub Application_Reminder(ByVal Item As Object)
        
        If TypeOf Item Is AppointmentItem Then
        MsgBox "Message text goes here", vbSystemModal, "Message title goes here"
        End If
        
    End Sub
    It'll bring Outlook and a message box to the front, stealing focus from whatever you're typing.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts