outlook-addin

Getting started with outlook-addin

Remarks#

This section provides an overview of what outlook-addin is, and why a developer might want to use it.

It should also mention any large subjects within outlook-addin, and link out to the related topics. Since the Documentation for outlook-addin is new, you may need to create initial versions of those related topics.

Installation or Setup

Detailed instructions on getting outlook-addin set up or installed.

Create first outlook-addin - Hello World

  1. Open Visual Studio

enter image description here

  1. Select File —> New —> Project menu or push Ctrl + Shift + N buttons

enter image description here

  1. Select Outlook VSTO Add-in template

enter image description here

  1. Add the following code to the project:

    private void ThisAddIn_Startup(object sender, System.EventArgs e) { MessageBox.Show(“Hello world”); }

  2. Run the program

enter image description here


This modified text is an extract of the original Stack Overflow Documentation created by the contributors and released under CC BY-SA 3.0 This website is not affiliated with Stack Overflow