popup balloon on saving email attachments

V

vonClausowitz

What I'm doing is the following:

I created an Initialize Handler which is called when the application
is startup.
I created also an WithEvents MyInboxMailItem as Outlook.Items
now I use the MyInboxMailItem_ItemAdd function to call the function
RETRIEVE_MAIL

RETRIEVE_MAIL scans my inbox for specific messages and senders.
When it finds them the attachments of the messages will be copied to a
windows folder and the messages
moved to another outlook folder.

What I want is to have a popup balloon (like the new email thing) that
disappears after so many secs
that attachments have been saved. That should be possible shouldn't
it?

Regards
Marco
The Netherlands
 
K

Ken Slovak - [MVP - Outlook]

Create a form using whatever development platform you are using and set up a
timer control that when it fires you close the form window.
 
V

vonClausowitz

Create a form using whatever development platform you are using and set up a
timer control that when it fires you close the form window.

--
Ken Slovak
[MVP - Outlook]http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.http://www.slovaktech.com/products.htm


What I'm doing is the following:
I created an Initialize Handler which is called when the application
is startup.
I created also an WithEvents MyInboxMailItem as Outlook.Items
now I use the MyInboxMailItem_ItemAdd function to call the function
RETRIEVE_MAIL
RETRIEVE_MAIL scans my inbox for specific messages and senders.
When it finds them the attachments of the messages will be copied to a
windows folder and the messages
moved to another outlook folder.
What I want is to have a popup balloon (like the new email thing) that
disappears after so many secs
that attachments have been saved. That should be possible shouldn't
it?
Regards
Marco
The Netherlands

How do you do this in Outlook?

Marco
 
K

Ken Slovak - [MVP - Outlook]

It has nothing to do with Outlook. It depends on your development platform.

For VBA you'd use a VBA UserForm, for .NET code you'd use a Windows Form,
for unmanaged code you'd use a form provided by your development
environment.

You'd show the form when you want, set a timer control to fire after an
interval you select, and when the timer fires you close your form.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top