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
- Open Visual Studio
- Select File —> New —> Project menu or push Ctrl + Shift + N buttons
- Select Outlook VSTO Add-in template
-
Add the following code to the project:
private void ThisAddIn_Startup(object sender, System.EventArgs e) { MessageBox.Show(“Hello world”); }
-
Run the program