Click here to Skip to main content
15,887,135 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a custom ribbon that I created in Outlook 2010 that I want to deploy as an add-in.

There is one button on the ribbon. When clicked, the button runs a macro that displays a custom message form in the organizational forms library.

Here is the macro:
VB
Sub DisplayMyCustomForm()

  Set myFolder = Session.GetDefaultFolder(olFolderInbox)
  Set myItem = myFolder.Items.Add("IPM.Note.MyCustomForm")
  myItem.Display

End Sub

I found instructions on msdn for building and deploying an Outlook Add-in using a ribbon visual designer in Visual Studio 2010, and the example project works for me.

However, I need help with writing the above code in the button click event handler in C# in my add-in so that I have this same functionality in the add-in that I want to deploy.

Thank you.
Posted
Updated 22-Mar-12 16:08pm
v3

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900