Not able to put Addin button in "Home" tab of Outlook 2010 !

N

neal

Hi,
In outlook 2010 all my addin buttons are coming in Addin Tabs. I dont
want my user to always navigate to this tab to use my addins. So would like
to put all my buttons in the "Home" Tab of outlook 2010. My addins are shared
addins. So I am using the following xml to perform this. But this is not
working. My buttons are not displaying anywhere in Home tab.

sRibbonXML = "<customUI
xmlns=""http://schemas.microsoft.com/office/2006/01/customui"" >" & _
"<ribbon>" & _
"<tabs>" & _
"<tab idMso=""TabHome"">" & _
"<group id=""SampleGroup"" label=""Sample Group"">" & _
"<button id=""Button"" label=""Insert Company Name""
size=""large"" onAction=""InsertCompanyName"" />" & _
"</group >" & _
"</tab>" & _
"</tabs>" & _
"</ribbon>" & _
"</customUI>"

Please help me....
 
K

Ken Slovak - [MVP - Outlook]

This is for what, an Explorer ribbon or Inspector ribbons? If this is for an
Explorer you need to provide the XML using the new XML namespace
"http://schemas.microsoft.com/office/2009/07/customui".

There also is no one specific home tab. There are different tabs depending
on what folder is current. For example there's a TabMail, TabTasks,
TabContacts, etc.

Do you have the reference material for Office 2010 and the ribbon ID's? How
about any of the sample addins?
 
N

neal

Thanks a lot ken !!

Yes i want the reference material for outlook 2010 and also the ribbon ID's .
was not able to find those... please send me the links...
 
K

Ken Slovak - [MVP - Outlook]

Did you find the downloads? They are on the Office Development Web site of
MSDN.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top