Reputation: 2282
I am attempting to venture down the Outlook Add-In road.
Basically - i need to add a few grouped buttons in the ribbon bar. Each button will perform a web service call with the credentials (email address) of the user.
Question : Is there a way to create a add-in that is at the Outlook level (ribbon level), not in the email (ribbon) level?
Upvotes: 0
Views: 44
Reputation: 49395
You need to develop a VSTO based add-in for Outlook where you can create a custom ribbon UI. See Walkthrough: Create your first VSTO Add-in for Outlook to get started quickly.
There are two ways for creating a custom UI in VSTO add-ins:
Web Add-ins work in the context of an item and also allows creating ribbon buttons, but very limited if we compare to VSTO add-ins, see Build your first Outlook add-in to get started quickly.
Upvotes: 1