Excel Help Toolbar

  • Thread starter Thread starter JK
  • Start date Start date
J

JK

My application deletes the Excel toolbar and inserts my toolbar. It works
fine. But my toolbar still has Excel's Help to the far right. Is there a way
to get it off my toolbar?

Thank you for allowing me a second question, and thank you in advance for
your suggestions.

Jim Kobzeff
 
Try this, the first 3 lines turn standard menubars off, the 4th you nee
to insert your menu bar name and the next 2 lines (which you can repeat
are to assign subs to buttons when the workbook is opened (modify wit
your names).

Hope this helps

Simon

Sub Auto_open()

With Application
.CommandBars.ActiveMenuBar.Enabled = False
.CommandBars("Formatting").Visible = False
.CommandBars("Standard").Visible = False
.CommandBars("your menubar name").Visible = True
.CommandBars("your menubar name").Controls("your butto
name").OnAction = "your sub name"
.CommandBars("your menubar name").Controls("your butto
name").OnAction = "your sub name"
.DisplayFullScreen = False
.DisplayFormulaBar = False
.DisplayStatusBar = False
End With
End Su
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top