Getting started with outlook-addin

Other topics

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

  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

Contributors

Topic Id: 4911

Example Ids: 17337,31053

This site is not affiliated with any of the contributors.