commandbar

Showing caption for CommandBar button with Excel VBA

I'm trying to add a button to a new CommandBar (for the Add-in tab) with Excel VBA. I can get the button into the ribbon and can get an image to show up for it if I use a FaceId, but I can't get the Caption to appear. Is there some way to do this? Do i have to use an image instead? With Application.CommandBars.Add("Open Forms") Wi...

Outlook Command Bar Fully Intialized event

Hi all, I was wondering if there is any way to know when the Outlook commandbar XXX is fully initialized after I invoke a second instance of Outlook. I have tried to the delegate the event with new Microsoft.Office.Interop.Outlook.ExplorersEvents_NewExplorerEventHandler. But unfortunately when I try to debug it I notice it is still usi...

BHO or Command Button for explorer

Hi I am trying to develop a command button that would appear on windows explorer. I can do this for an NSE but what I want to do is make the button visible on every explorer window. I want it to work for windows 7 and vista. I know it is possible as I have seen office Groove do it, and I am not sure if I have to implement the IExplorer(...

How to create a button like New Mail in Outlook add-in?

Can anyone pls tell me how to create a button(in CommandBar) like 'New Mail' (with a dropdown list) in Outlook? When one clicks on the button it should do some action and when clicked on the down arrow mark, it should populate a list of items. I am in need of this very much. If anyone know the answer pls let me know. Thanks in advance!...

VSTO Addin CommandBar default visibility

I have a Visio Addin written in C# that add a custom CommandBar to Visio. The MSDN documentation mentions that the Visible property of the CommandBar is False by default. However, my CommandBar is being displayed by default when my Addin starts (even If I force the visibility to False). What is strange, is that it happens only at startu...

ASP.Net HTML Code Window Constant Name

Hello, I am trying to place a right-click menu addin for the asp.net html window. The one I currently have works on the C#/Vb code window...just not in the html code window. commandBars = (CommandBars)applicationObject.CommandBars; codeCommandBar = commandBars["Code Window"]; That would get me the context menu (right-...