views:

435

answers:

3

Hello,

I'm looking to experiment with developing an Outlook plugin. I'm using the express edition of Visual Studio, and it seems the Outlook integration feature is missing from the Express edition (intentionally).

Is that indeed the case?

Are there 3rd party libraries that allow connecting to the Outlook model with the Express edition?

Thanks

+2  A: 

You only need to install the Office Interop Assemblies and reference those.. then you should be good to go.

pb
The explanation I was missing was eventually in http://msdn.microsoft.com/en-us/library/bb646840.aspx
Roee Adler
A: 

You can use Add-in-Express. They say that Visual C# .NET 2008 Express is supported. It is however not that cheap (US$ 349).

Stefan Schultze
A: 

Have a look at Hacking Outlook The big problem is that OUtlook Express is something that Microsoft really don't want you to extend and the COM interface is far from complete, far from documented and infact definitely not the recommended way to do things. However there isn't a recommended way so the only choice left is to use what you can i.e. the COM interface. So automate the interace you are basically back to old techniques such as using Windows messages and hooking the interface - good luck it isn't easy. PS -- Full Outlook is another matter and is just a matter of creating a standard Office add in.

mikej
You are referring to Outlook Express, but I'm talking about Microsoft Outlook. Do they have the same COM interfaces?
Roee Adler