#1   Report Post  
Posted to microsoft.public.excel.misc
robert
 
Posts: n/a
Default toolbars

I was recently updated to the latest version of MS Office. When I open an
excel file the "Reviewing" toolbar is at the top. I remove it but I cannot
keep it from reappearing at some later time when opening an other excel file.
How do I get it permanently removed from the tool bar at the top so that it
will no longer appear when I open an excel file in the future.
  #2   Report Post  
Posted to microsoft.public.excel.misc
Norman Jones
 
Posts: n/a
Default toolbars

Hi Robert.

See Jim Rech's suggestion at:

http://tinyurl.com/bvs6y


---
Regards,
Norman



"robert" wrote in message
...
I was recently updated to the latest version of MS Office. When I open an
excel file the "Reviewing" toolbar is at the top. I remove it but I cannot
keep it from reappearing at some later time when opening an other excel
file.
How do I get it permanently removed from the tool bar at the top so that
it
will no longer appear when I open an excel file in the future.



  #3   Report Post  
Posted to microsoft.public.excel.misc
robert
 
Posts: n/a
Default toolbars

Hi Norman
Thanks for the response.
I was hoping for a more global solution. Microsoft needs to provide ways to
turn off some of their enhancements that people don't want. Some of their
enhancements are irritating.

"Norman Jones" wrote:

Hi Robert.

See Jim Rech's suggestion at:

http://tinyurl.com/bvs6y


---
Regards,
Norman



"robert" wrote in message
...
I was recently updated to the latest version of MS Office. When I open an
excel file the "Reviewing" toolbar is at the top. I remove it but I cannot
keep it from reappearing at some later time when opening an other excel
file.
How do I get it permanently removed from the tool bar at the top so that
it
will no longer appear when I open an excel file in the future.




  #4   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default toolbars

You could write an application event and have a workbook open that
automatically turns it off, like this

Public WithEvents App As Application

Private Sub App_WorkbookOpen(ByVal Wb As Workbook)
Dim oProp As DocumentProperties
Dim Counter As Integer
Set oProp = ActiveWorkbook.CustomDocumentProperties
For Counter = oProp.Count To 1 Step -1
If Left(oProp.Item(Counter).Name, 1) = "_" Then _
oProp.Item(Counter).Delete
Next
CommandBars("Reviewing").Visible = False
End Sub

Private Sub Workbook_Open()
Set App = Application
End Sub

'This is workbook event code.
'To input this code, right click on the Excel icon on the worksheet
'(or next to the File menu if you maximise your workbooks),
'select View Code from the menu, and paste the code



--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"robert" wrote in message
...
Hi Norman
Thanks for the response.
I was hoping for a more global solution. Microsoft needs to provide ways

to
turn off some of their enhancements that people don't want. Some of their
enhancements are irritating.

"Norman Jones" wrote:

Hi Robert.

See Jim Rech's suggestion at:

http://tinyurl.com/bvs6y


---
Regards,
Norman



"robert" wrote in message
...
I was recently updated to the latest version of MS Office. When I open

an
excel file the "Reviewing" toolbar is at the top. I remove it but I

cannot
keep it from reappearing at some later time when opening an other

excel
file.
How do I get it permanently removed from the tool bar at the top so

that
it
will no longer appear when I open an excel file in the future.






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
hide toolbars, menu bar, etc runandrun Excel Discussion (Misc queries) 0 September 22nd 05 10:16 PM
Toolbars will not stay where I put them Dave Excel Discussion (Misc queries) 0 September 2nd 05 07:57 PM
ToolBars bach New Users to Excel 5 August 11th 05 11:10 AM
Customizing ToolBars MIKE MEDLIN Excel Discussion (Misc queries) 0 January 13th 05 12:11 AM
Cant add an icon to toolbars Rasoul Khoshravan Azar Excel Discussion (Misc queries) 1 November 28th 04 08:19 PM


All times are GMT +1. The time now is 09:40 AM.

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"