ToolBars

  • Thread starter Thread starter Ann Marinas
  • Start date Start date
A

Ann Marinas

Hello all!

I have a question regarding toolbars...

I was wondering if a toolbar has the ability to merge with another toolbar,
just like in the usual menu bars.

Thanks a million!

-A
 
Hi Ann,

I am not sure if there is a method such as the equivalent of
Menu.MergeMenu() for a toolbar.
But you can try adding appending additional toolbar buttons
dynamically using the ToolBar.Buttons property that manipulates
the toolbar's ToolbarButtonCollection.
There's also the option of adding the new (child) toolbar to the main form's
Control collection so that it is docked along side the primary (parent)
toolbar.

Regards,
Aravind C
 
Back
Top