michal554253

Hi all,

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);

(with some other stuff), and it loads into the main outlook screen fine....

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


Re: Visual Studio Tools for Office outlook toolbar in sent messages

X4U

Hello Michal,

the Item Windows in Outlook are called Inspectors.

You can see a sample how to create CommandBars and Controls for Expplorers & Inspectors here:

http://www.x4u.de/Outlook/Codesnippets/tabid/61/Default.aspx

Have a look at the Inspectors & Explorer sample (only C#)

Maybe you can find some VB samples here:

http://www.outlookcode.com/d/index.htm#dotnet

Hope this helps,

greets, Helmut






Re: Visual Studio Tools for Office outlook toolbar in sent messages

michal

Thanks helmut

that first site looks ace.

nice one!

michal