23

Does anyone know of a good example for getting started with Outlook add-ins using C#?

januszstabik
  • 1,152
  • 5
  • 16
  • 30

4 Answers4

21

There are two ways to create such an add-in in VS 2008:

  1. Managed Add-in (File > New Project > Office > Outlook 2007 Add-in)
  2. Shared Add-in (File > New Project > Other Project Types > EXtensibility > Shared Add-in)

For Managed Add-in:

An example of a Shared Add-in:

For comparison:

Ross Rogers
  • 23,523
  • 27
  • 108
  • 164
Brij
  • 6,086
  • 9
  • 41
  • 69
5

MSDN blog article here.

Kindness,

Dan

Daniel Elliott
  • 22,647
  • 10
  • 64
  • 82
2

I recommend the "How Do I" videos on MSDN:

How do I... (Outlook 2013 developer reference)

Forms (Outlook How Do I)

Also - get to know the Outlook Object Model
And the difference between Explorer and Inspector windows.

Along with the other articles, posted, you'll be up and running in no time at all.

Tyrant
  • 510
  • 2
  • 5
2

I also recommend taking a look at Addin Express.

They have a toolset that

  1. offers more features than out-of-the-box Visual Studio, and
  2. reduces the amount of required code (i.e. makes it easier).

Here is an overview of the Add-in Express features for Outlook.

Tyrant
  • 510
  • 2
  • 5