vote up 0 vote down star
1

I have written an outlook add-in to filter spam. The issue is that when the add-in is doing its job of processing a message, and especially with a large attachment that it is procesing / reading through, it is taking a lot of time and because of this the main outlook UI is un-responsive and users cannot do anything with the UI.

Is there an asynchrounous way of running the add-in processing, so that the outlook UI remains OK.

The add-in does a lot of things dueing its procesing of each message and hence it takes a lot of time.

flag

25% accept rate

1 Answer

vote up 0 vote down

It's just like with any other program basically. If you need to do something outside of the main thread do so (i.e. create another thread). There's no Outlook-specific API or framework, though.

You have to be extra careful about exception handling though. Unhandled exceptions escaping from a thread can have the weirdest results (though in most cases Outlook will simply crash).

Also, if at all possible you should try to avoid or at least drastically limit accessing the Outlook Object Model from within your processing thread.

Finally, another thing you should make sure of is that you explicitly call CoInitializeEx / CoUninitialize specially for your new thread if it in any way directly or indirectly uses COM-related functions.

link|flag
yeah i understand. So i will essentially need to spawn a new Win32 thread that will process each item? i.e. this will need to happen in the COM add-in i take it? Its written in C++. Any more tips on spawing these thread please :-) Thnaks. – unknown (google) Feb 8 at 13:59
That's the idea, yes. Where else would you have it happen? You don't necessarily need a thread per item, though. That's totally up to you. I'm not a C++ coder myself so I couldn't give you any specifics on multi-thread programming in that language (except a vague wave towards the CreateThread API) – Oliver Giesen Feb 8 at 14:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.