Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Outlook Add-In tutorial? [closed]

Tags:

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

like image 300
januszstabik Avatar asked Nov 18 '09 10:11

januszstabik


People also ask

How do I fix an Outlook Add-In Problem?

Fixing Outlook unhealthy add-in notifications 1. In the case where the unhealthy COM add-in is automatically disabled by Outlook or disabled by you, the dialog box will give you an option to check 'Always enable this add-in'.


3 Answers

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:

  • Getting Started (Office Development in Visual Studio)

An example of a Shared Add-in:

  • Creating Custom Task Panes as COM Add-Ins

For comparison:

  • Visual Studio Add-ins Versus Shared Add-ins
  • Shared Add-in vs. VSTO Add-in: What's the difference between/how can I tell if I'm developing?
like image 107
Brij Avatar answered Oct 14 '22 04:10

Brij


MSDN blog article here.

Kindness,

Dan

like image 37
Daniel Elliott Avatar answered Oct 14 '22 04:10

Daniel Elliott


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.

like image 21
Tyrant Avatar answered Oct 14 '22 02:10

Tyrant