I'm positive because I put this workbook on a network drive, and when I open it on a different computer, the toolbar pops up and I have to click on "X". Do you know whay this happens? Thanks
Main Topics
Browse All TopicsI created a customize toolbar for the macros. Then I switch to use button on the sheets, not toolabar anymore. I've tried to delete this toolbar by going to Tools->Toolbars->Customize
Do u know how I can completely delete the toolbar? Thanks for all your help.
w100ktn
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I do not have an Englisch version of Excel but i will try to explain it:
Click Toolbars, Customize, and then click the last button ( it's should be something like Add.)
There will appear a windows with two lists. You have to take the one on the right (something like 'toolbars in workbook'.)
Select your toolbar and the button will change to 'delete'.
Click the delete-button.
Close the windows and save your workbook.
Patrick
w100ktn,
Try this where you substitute the name of your toolbar in place of "MyToolbar." If you are unsure of the name of the toolbar, then run this first. It will list the toolbar names in the Immediate Window of the Visual Basic Editor. Then you'll have the name to substitute:
--------------------------
Option Explicit
Sub ListToolbarNames()
Dim intCounter As Integer
Dim intCBCount As Integer
Dim intAnswer As Integer
Dim strCBName As String
intCBCount = Application.CommandBars.Co
For intCounter = 1 To intCBCount
strCBName = Application.CommandBars.It
Debug.Print strCBName
Next intCounter
End Sub
-------------------------
******Then substitute the toolbar name in the code below.*********
----------------------
Option Explicit
Sub DeleteToolbar()
Dim intCounter As Integer
Dim intCBCount As Integer
Dim intAnswer As Integer
Dim strCBName As String
intCBCount = Application.CommandBars.Co
For intCounter = 1 To intCBCount
strCBName = Application.CommandBars.It
If strCBName = "MyToolbar" Then
intAnswer = MsgBox("Do you want to delete this toolbar?", vbYesNo)
If intAnswer = vbYes Then
Application.CommandBars.It
End If
End If
Next intCounter
End Sub
--------------------------
Hope this helps.
Business Accounts
Answer for Membership
by: SteinerPosted on 2003-08-14 at 07:06:58ID: 9146711
Are you sure this toolbar is really attached to your workbook?
Excel stores toolsbars in an .xlb-file in the system-directory, too. Maybe the toolbar is stored there.