i have created a toolbar that loads a commandbar into outlook when it loads, using
Code Snippet
Office.CommandBar newToolBar;
Office.CommandBars cBars =this.Application.ActiveExplorer().CommandBars;
newToolBar = cBars.Add("myBar", Office.MsoBarPosition.msoBarTop, false, true);
However, I would like to have these buttons in the toolbar when I open up a message.
i.e. open outlook, open a message, press toolbar button.
HOw do I install the button/toolbar into that screen
thanks
michal