Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Removing and replacing toolbars...

I found the code below in a search and it's almost exactly what I want
And yes, it works great. However, I want to maintain the Worksheet Men
Bar.....the one with File, Edit, View etc, but not the actua
toolbars.

Would anyone have any idea how I could adjust this code to enable me t
achieve this objective?

Thanks to Bill Manville for his original answer which almost does th
trick for me too, and thanks in advance for looking at my problem.

---------------------------

Sub Auto_Open()
ShowToolbars False
End Sub

Sub Auto_Close()
ShowToolbars True
End Sub

Sub ShowToolbars(ToBeSeen As Boolean)
Dim CB As CommandBar
For Each CB In Application.CommandBars
CB.Enabled = ToBeSeen
Next
End Sub

-------------------------------


Regards

--
Message posted from http://www.ExcelForum.com

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,236
Default Removing and replacing toolbars...

Big Chris,

If Not CB.Name = CommandBars.ActiveMenuBar.Name Then CB.Enabled = ToBeSeen

Rob


"Big Chris " wrote in message
...
I found the code below in a search and it's almost exactly what I want.
And yes, it works great. However, I want to maintain the Worksheet Menu
Bar.....the one with File, Edit, View etc, but not the actual
toolbars.

Would anyone have any idea how I could adjust this code to enable me to
achieve this objective?

Thanks to Bill Manville for his original answer which almost does the
trick for me too, and thanks in advance for looking at my problem.

---------------------------

Sub Auto_Open()
ShowToolbars False
End Sub

Sub Auto_Close()
ShowToolbars True
End Sub

Sub ShowToolbars(ToBeSeen As Boolean)
Dim CB As CommandBar
For Each CB In Application.CommandBars
CB.Enabled = ToBeSeen
Next
End Sub

-------------------------------


Regards,


---
Message posted from http://www.ExcelForum.com/



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Removing and replacing toolbars...

Thanks for your help Rob, but I guess I must have put it in the wrong
place as it's now permanently hidden the toolbar I want to keep on show
and I can't get it back.

I used your line like this:

---------------------------

Sub Auto_Open()
ShowToolbars False
End Sub

Sub Auto_Close()
ShowToolbars True
End Sub

Sub ShowToolbars(ToBeSeen As Boolean)
Dim CB As CommandBar
For Each CB In Application.CommandBars
If Not CB.Name = CommandBars.ActiveMenuBar.Name Then CB.Enabled =
ToBeSeen
Next
End Sub

-------------------------------

Could you possibly tell me where I should have put it and maybe how I
can view the VB Editor to change the Autro Open macro? Keystrokes
don't work as the menu bar they relate to is not there!

So at the moment I can't do anything, save maybe reinstalling
Office(?)

Many thanks,


---
Message posted from http://www.ExcelForum.com/

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,236
Default Removing and replacing toolbars...

You put the code on the correct line.

Sounds like your toolbar is "funny". You need to search for an *.xlb file
and rename it to .old (or something) - then restart Excel. See if that
helps.

Rob


"Big Chris " wrote in message
...
Thanks for your help Rob, but I guess I must have put it in the wrong
place as it's now permanently hidden the toolbar I want to keep on show
and I can't get it back.

I used your line like this:

---------------------------

Sub Auto_Open()
ShowToolbars False
End Sub

Sub Auto_Close()
ShowToolbars True
End Sub

Sub ShowToolbars(ToBeSeen As Boolean)
Dim CB As CommandBar
For Each CB In Application.CommandBars
If Not CB.Name = CommandBars.ActiveMenuBar.Name Then CB.Enabled =
ToBeSeen
Next
End Sub

-------------------------------

Could you possibly tell me where I should have put it and maybe how I
can view the VB Editor to change the Autro Open macro? Keystrokes
don't work as the menu bar they relate to is not there!

So at the moment I can't do anything, save maybe reinstalling
Office(?)

Many thanks,


---
Message posted from http://www.ExcelForum.com/



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Removing and replacing toolbars...

Thanks for coming back to me on this Rob. I found two .XLB files an
renamed them both but it still does what it was doing before.

....any other thoughts you may have would be very gratefully received!

Regards

--
Message posted from http://www.ExcelForum.com



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,236
Default Removing and replacing toolbars...

Big Chris,

Just make sure you're renaming these files while Excel isn't running.

Try running this code from VBA which should reset all the commandbars:
Sub testit()
Dim cbr As CommandBar

For Each cbr In CommandBars
cbr.Reset
Next
End Sub

Other than that, I'm a little stumped myself..

Rob


"Big Chris " wrote in message
...
Thanks for coming back to me on this Rob. I found two .XLB files and
renamed them both but it still does what it was doing before.

...any other thoughts you may have would be very gratefully received!

Regards,


---
Message posted from http://www.ExcelForum.com/



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
removing toolbars and taskbars from only one worksheet or workbook Jaytee Excel Discussion (Misc queries) 2 March 4th 09 08:27 PM
toolbars (removing and reinstating) Atishoo Excel Discussion (Misc queries) 2 February 20th 09 11:30 PM
Removing patterns without removing gridlines pennyb9 Excel Discussion (Misc queries) 1 July 11th 07 02:43 AM
removing customized toolbars news Excel Discussion (Misc queries) 1 February 24th 05 03:11 PM
removing and replacing toolbars Paul James[_3_] Excel Programming 5 January 9th 04 12:23 AM


All times are GMT +1. The time now is 03:18 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"