I created an Outlook add-in using VSTO 2008. I did not create a separate feed / group for this add-in. Instead, VSTO automatically creates an add-in button in the embedded ribbon when Outlook starts. Now how to set up a tooltip on this add-in?
Here is a snippet to add a label and icon for my add-in
[Microsoft.Office.Tools.Outlook.FormRegionMessageClass("IPM.Note.DougForm")]
[Microsoft.Office.Tools.Outlook.FormRegionName("Doug.Note.FormTest")]
public class QMemoRegionFactory : QRegionFactory, Microsoft.Office.Tools.Outlook.IFormRegionFactory
{
public DougFormTest()
{
this._Manifest.FormRegionName = "DougForm";
this._Manifest.Icons.Page = global::DougForm.OutlookAddin.Properties.Resources.DougIcon_big;
}
...
thanks
Doug
source
share