Consulting

Results 1 to 9 of 9

Thread: Solved: OL2003 new msg notification

  1. #1
    VBAX Tutor TheAntiGates's Avatar
    Joined
    Feb 2005
    Location
    Tejas
    Posts
    263
    Location

    Solved: OL2003 new msg notification

    I'm hoping this is configurable without code, but here goes:

    For the 2003 version Microsoft was kind enough to fix the notification process which wasn't broken - imagine that! Whoda thought MS would do that! (/sarcasm mode off/) Now the notification message disappears after some short period of time, vs. the msgbox that used to remain. Since I regularly leave my PC (e.g. lunch) I'd like to have the prompt from a message from a company CEO to be staring hard at me when I return.

    Currently it does leave the little icon way down in the [XP] system tray, but that's too inconspicuous. Does anyone know of a code or configuration solution?
    I just found a cool semi-advanced VBA page - dictionary, queue, etc. http://analystcave.com/excel-vba-dic...ta-structures/

  2. #2
    Site Admin
    The Princess
    VBAX Guru Anne Troy's Avatar
    Joined
    May 2004
    Location
    Arlington Heights, IL
    Posts
    2,530
    Location
    So...what you want is that if you receive an email from a specific address, you want a popup? Otherwise, no change...?
    ~Anne Troy

  3. #3
    VBAX Tutor TheAntiGates's Avatar
    Joined
    Feb 2005
    Location
    Tejas
    Posts
    263
    Location
    ya - or any email
    I just found a cool semi-advanced VBA page - dictionary, queue, etc. http://analystcave.com/excel-vba-dic...ta-structures/

  4. #4
    Administrator
    VP-Knowledge Base VBAX Master
    Joined
    Jan 2005
    Location
    Porto Alegre - RS - Brasil
    Posts
    1,219
    Location
    Try,

    1. Tools
    2. Rules and Alerts
    3. E-mail rules
    4. Create new rule
    5. Start with blank rule
    6. Next
    7. check from
    8. click on people or distribution list
    9. At From textbox type the sender e-mail address
    10. ok
    11. next
    12. check start an application
    13. click on a application
    14. type c:\boss.vbs
    15. click on finish

    Create a new file called boss.vbs and save it at your root directory (C:\) I have assumed above.
    The content of that file will be:
    [VBA]
    MsgBox "You have got a mail from your Boss!"
    [/VBA]

    Done, this will do exactly what you want.
    Best Regards,

    Carlos Paleo.

    To every problem there is a solution, even if I dont know it, so this posting is provided "AS IS" with no warranties.

    If Debugging is harder than writing a program and your code is as good as you can possibly make
    it, then by definition you're not smart enough to debug it.




    http://www.mugrs.org

  5. #5
    VBAX Tutor TheAntiGates's Avatar
    Joined
    Feb 2005
    Location
    Tejas
    Posts
    263
    Location
    I'll have to try this on Monday. Still, thankssssss!
    I just found a cool semi-advanced VBA page - dictionary, queue, etc. http://analystcave.com/excel-vba-dic...ta-structures/

  6. #6
    Administrator
    VP-Knowledge Base VBAX Master
    Joined
    Jan 2005
    Location
    Porto Alegre - RS - Brasil
    Posts
    1,219
    Location
    Welcome!
    Best Regards,

    Carlos Paleo.

    To every problem there is a solution, even if I dont know it, so this posting is provided "AS IS" with no warranties.

    If Debugging is harder than writing a program and your code is as good as you can possibly make
    it, then by definition you're not smart enough to debug it.




    http://www.mugrs.org

  7. #7
    Site Admin
    The Princess VBAX Guru Anne Troy's Avatar
    Joined
    May 2004
    Location
    Arlington Heights, IL
    Posts
    2,530
    Location
    Carlos! That's cool. Lemme know, Tag.
    ~Anne Troy

  8. #8
    Administrator
    VP-Knowledge Base VBAX Master
    Joined
    Jan 2005
    Location
    Porto Alegre - RS - Brasil
    Posts
    1,219
    Location
    Thanks Anne,

    I think WSH is one out of the most usefull and less used windows resources.
    Best Regards,

    Carlos Paleo.

    To every problem there is a solution, even if I dont know it, so this posting is provided "AS IS" with no warranties.

    If Debugging is harder than writing a program and your code is as good as you can possibly make
    it, then by definition you're not smart enough to debug it.




    http://www.mugrs.org

  9. #9
    VBAX Tutor TheAntiGates's Avatar
    Joined
    Feb 2005
    Location
    Tejas
    Posts
    263
    Location
    Quote Originally Posted by Paleo
    check start an application
    Create a new file called boss.vbs and save it at your root directory (C:\)
    That seems to work perfectly. I had no idea about start an application. Way to go!
    I just found a cool semi-advanced VBA page - dictionary, queue, etc. http://analystcave.com/excel-vba-dic...ta-structures/

Posting Permissions

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