Roee Adler
Roee Adler

Reputation: 34000

Developing Outlook plugin with Visual C# 2008 Express?

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

Upvotes: 3

Views: 2306

Answers (3)

user138512
user138512

Reputation:

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.

Upvotes: 0

Stefan Schultze
Stefan Schultze

Reputation: 9398

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

Upvotes: 0

Paul van Brenk
Paul van Brenk

Reputation: 7559

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

Upvotes: 2

Related Questions