Click here to Skip to main content
Click here to Skip to main content

Outlook 2007 Add-in Using Microsoft Visual C#.NET

By , 24 Feb 2010
 

Table of Contents

Introduction

Many well known companies use the Microsoft Office System to operate their business. Microsoft Office system is both strong and powerful to operate your business information, but sometimes you may need some extra features into your Office system so that you can do some more complex tasks efficiently. That is the reason to build custom solutions and add-ins for Microsoft Office. Using Microsoft Visual Studio 2005 / 2008 Tools for the Microsoft Office System (VSTO), you can develop custom solutions to help solve the problems that your business needs to solve.

What We Learn

This article demonstrates how to develop an add-in for Microsoft Office Outlook 2007 to help a fictitious company. You will learn how add custom menus, toolbar command button, custom tabs (Outlook 2007), work with ribbon and custom forms as well.

Well… I hope that you are enjoying; let’s start. I try to categorize it into two parts as listed below:

Part - A

  1. We will discuss basic concepts how to build your first custom add-in for Office Outlook 2007.
  2. We will discuss how to add a custom menus, toolbar command button, custom tabs (Outlook 2007).

Part - B

This part is not included yet…. I hope that this will be available in the next part.

  • We will discuss how to work with different types of Outlook objects such as email, appointments, task, etc.

Basic Overview of Outlook 2007 Add-In

Develop an Outlook 2007 add-in using Microsoft Visual Studio .NET Framework 3.5, Microsoft Office System provides a basic Template for doing this. The templates are available in both Visual Basic and Visual C# languages. Each template includes the OutlookItem class, which enables developers to work with generic Outlook items through late-binding, without determining the item type first.

More information can be found at this link.

Outlook Object Model Overview

To develop add-ins for Microsoft Office Outlook, you can interact with the objects provided by the Outlook object model. The Outlook object model provides classes that represent items in the user interface. For example, the Microsoft.Office.Interop.Outlook.Application class represents the entire application, the Microsoft.Office.Interop.Outlook.MAPIFolder class represents a folder that contains e-mail messages or other items, and the Microsoft.Office.Interop.Outlook.MailItem class represents an e-mail message.

More information can be found at this link.

Build Your First Add-In for Outlook 2007 (Part - A)

In this section, we will discuss about creating your first add-in for Outlook 2007. Microsoft Visual Studio provides the template for creating an add-in for Microsoft Office system.

How to Create an Add-In project for Microsoft Office Outlook 07

To create a new Outlook 2007 Add-In project, we need to follow the step(s) listed below:

  • Open Microsoft Visual Studio .NET and create a new project by selecting “Project” menu under the File > New menu.
Figure - (i)

CreateProjectStep-1

Figure (i) shows how to create a project using Microsoft Visual Studio 08.

  • A project type window will popup with the available language and available templates.
  • Select C# > Office > 2007 from the project type tree.
  • You will find the available templates, select Outlook 2007 add-in & finally enter your project name and click the Ok button for creating the project.
Figure - (ii)

CreateProjectStep-2

Figure (ii) shows the available Template to create an add-in project for Office system.

Create Your First Custom Controls & Events

In this section, we will discuss how to add custom menus, toolbar command buttons, etc. For this purpose, we use the following:

  1. Office.CommandBar
  2. Office.CommandBarPopup
  3. Office.CommandBarButton

Create a Custom Menu

This example below creates a Menu called “My Menu” in Microsoft Office Outlook 2007. Figure (iii) show the menu in your Outlook 07.

Figure - (iii)

CustomMenu

Code Snippets

 #region "Outlook07 Menu"
        private void MyMenuBar()
        { this.ErsMyMenuBar();
           try
            {
                //Define the existent Menu Bar
                _objMenuBar = this.Application.ActiveExplorer().CommandBars.ActiveMenuBar;
                //Define the new Menu Bar into the old menu bar
                _objNewMenuBar = (Office.CommandBarPopup)
                                 _objMenuBar.Controls.Add
                (Office.MsoControlType.msoControlPopup
                                                        , missing
                                                        , missing
                                                        , missing , false);
                if (_objNewMenuBar != null)
                {
                    _objNewMenuBar.Caption = "My Menu";
                    _objNewMenuBar.Tag = menuTag;
                    _objButton = (Office.CommandBarButton)_objNewMenuBar.Controls.
                    Add(Office.MsoControlType.msoControlButton, missing,
                        missing, 1, true);
                    _objButton.Style = Office.MsoButtonStyle.
                        msoButtonIconAndCaption;
                    _objButton.Caption = "My menu item.";
                    //Icon 
                    _objButton.FaceId = 500;
                    _objButton.Tag = "ItemTag";
                    //EventHandler
                    _objButton.Click += 
           new Office._CommandBarButtonEvents_ClickEventHandler(_objButton_Click);
                    _objNewMenuBar.Visible = true;
                }
            }
            catch (System.Exception ex)
            {
                System.Windows.Forms.MessageBox.Show("Error: " + ex.Message.ToString()
                                                   , "Error Message");
            }        }
        #endregion

Create a Custom Toolbar

This example creates a toolbar command button called “My ToolBar Button” in Microsoft Office Outlook 2007.
Figure (iv,v) shows the toolbar in your Outlook 07.

Figure - (iv)

CustomCommandButton

Figure - (v)

ToolBar

Code Snippets

private void MyToolBar()
        {   try
            {
                // Delete the existing instance, if applicable.
                Office.CommandBar _objTmpToolBar = 
        (Office.CommandBar)this.Application.ActiveExplorer()
                    .CommandBars.FindControl(missing, missing,
                   menuToolBarTag, true);
                if (_objTmpToolBar != null)
                    _objTmpToolBar.Delete();     // Add a new toolbar to the 
                    // CommandBars collection
                                // of the Explorer window.
                _objToolBar = this.Application.ActiveExplorer()
                    .CommandBars.Add(menuToolBarTag,
                    Office.MsoBarPosition.msoBarTop, false, true);
                if (_objToolBar != null)
                {
                    // Add a button to the new toolbar.
                    _objNewToolBarButton = (Office.CommandBarButton)_objToolBar
                        .Controls.Add(Office.MsoControlType.msoControlButton,
                        missing, missing, 1, true);
                    _objNewToolBarButton.Style = Office.MsoButtonStyle
                        .msoButtonIconAndCaption;
                    _objNewToolBarButton.Caption = "My ToolBar Button";
                    _objNewToolBarButton.FaceId = 65;
                    _objNewToolBarButton.Tag = menuToolBarTag;
                    _objNewToolBarButton.Click += 
           new Office._CommandBarButtonEvents_ClickEventHandler
            (_objToolBarButton_Click);
                    _objNewToolBarButton.Visible = true;
                }
            }
            catch (System.Exception ex)
            {
                System.Windows.Forms.MessageBox.Show("Error: " + ex.Message.ToString()
                                                   , "Error Message");
            }        
}      

Conclusion

I hope that this may be helpful to you. Enjoy!

References

  • MSDN

History

  • 23rd February, 2010: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Md. Marufuzzaman
CEO
Bangladesh Bangladesh
Member
He is the founder & CEO of MNH Technologies and working for urban and rural sectors to improve people’s lifestyle, better medical facilities, education, social business etc. He has over ten years of professional experiences in design and developing Client-Server, Multi-Tier, Database, Web based business software solutions, Enterprise Applications, API, WebAPI, Google Analytics implementation, Add-In, Documentation & Technical Writing etc for Windows / Mac using Microsoft SQL Server, Oracle, MySql, PS, C#, VB.NET, ASP.NET, PHP, RoR, Visual Basic etc. He has also more than two years experience in Mobile-VAS (Platform Development).
 
He worked for various software development & technology consulting. His core focus on technologies to create dynamic data-driven systems that add value to your business and dynamic technology consulting that builds advanced solutions for the industries across the various vertices.
 
He also work as a Solution Architect at Dhrupadi Techno Consortium Limited (DTCL) and responsible for analyzing business requirements and offered optimum solutions (multiple options), which would address all current requirements, provide flexibility for future growth and allow smooth transition between old system and new system.
 
He graduated with honors from The University of Asia Pacific, in Computer Science and Engineering. He was awarded as “Most Valuable Professional” (MVP) at 2010 and 2011 by CodeProject.com and also selected as a Mentor of CodeProject.com
 
Specialties: Software Development Management, System Integration, Data Warehouse Architecture, Virtualization.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 1membermaddinthegreat11 Dec '12 - 13:42 
GeneralRe: My vote of 1mentorMd. Marufuzzaman12 Dec '12 - 4:09 
GeneralMy vote of 3memberIngar Tødenes31 Oct '12 - 4:43 
QuestionApplication for outlook ribbonmemberSid_ga23423 Oct '12 - 4:09 
QuestionHimemberMP TP4 Apr '12 - 2:37 
AnswerRe: HimentorMd. Marufuzzaman4 Apr '12 - 3:29 
Question"Unable to cast COM object of type 'System.__ComObject' to interface type 'Microsoft.Office.Interop.Outlook.TaskItem'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{00063035-0000-0000-C000-000membertaneem785130 Jan '12 - 6:52 
Questionoutlook 2010 addinmemberrtalsaniya12 Dec '11 - 3:49 
AnswerRe: outlook 2010 addinmvpMd. Marufuzzaman12 Dec '11 - 4:24 
GeneralAdd HowTo put element in an existing menumemberserup9 Jun '11 - 20:25 
Perhaps you could add an example on how a right-click menu could be accessed and added a new menu item

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 25 Feb 2010
Article Copyright 2010 by Md. Marufuzzaman
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid