outlook-addin Getting started with outlook-addin

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

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.

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

  2. Add the following code to the project:

private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
     MessageBox.Show("Hello world");
}
 
  1. Run the program

enter image description here

Installation or Setup

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



Got any outlook-addin Question?