Pop-up Notification.

  • Thread starter Thread starter Craig Walker
  • Start date Start date
C

Craig Walker

Hi, I would like to be able to get a pop-up notifcation
message for e-mails coming in to a shared public mailbox.
is this possible and how would i go about acheiving this?

Kind Regards

Craig Walker
 
For each user to have a notification you would need to build a COM
addin that traps the ItemAdd event on the Items collection of that
public folder. This would only work of course when Outlook was
running. If you wanted notifications on items that came into the
folder when Outlook wasn't running your startup code would have to
check the folder for items it hadn't already created a notification
for.

See http://www.slipstick.com/dev/code/zaphtml.htm#cw for an Outlook
VBA example of handling ItemAdd for the Items collection of the Inbox.
It shows how to handle that event.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Lead Author, Professional Outlook 2000 Programming, Wrox Press
Lead Author, Beginning VB 6 Application Development, Wrox Press
Attachment Options
http://www.slovaktech.com/attachmentoptions.htm
Extended Reminders
http://www.slovaktech.com/extendedreminders.htm
 
Back
Top