Figured it out.
Microsoft.VisualStudio.CommandBars.CommandBar menuBarCommandBar =
((Microsoft.VisualStudio.CommandBars.CommandBars)_applicationObject.CommandBars)["MenuBar"];
//Find the Tools command bar on the MenuBar command bar:
CommandBarControl toolsControl = menuBarCommandBar.Controls["Tools"];
CommandBarPopup toolsPopup = (CommandBarPopup)toolsControl;
// Hide the entire tools menu
toolsPopup.Visible = false;
> I've created the skeleton framework for a Visual Studio 2005 add-in
> (C#) and I was wondering if there is a way to remove any of the
[quoted text clipped - 9 lines]
>
> -M
Carlos J. Quintero [VB MVP] - 23 Oct 2006 12:56 GMT
Be sure that you know why you are doing that, hopefully an add-in for your
own use or your own organization and not for the general public, because
that would be an unacceptable behavior for an add-in.
Just in case...

Signature
Best regards,
Carlos J. Quintero
MZ-Tools: Productivity add-ins for Visual Studio
You can code, design and document much faster:
http://www.mztools.com
> Figured it out.
>
[quoted text clipped - 21 lines]
>>
>> -M