Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11
Default vba code to block review toolbar

In my little world I get many excel files sent to me.

I would be very greatful if someone was to enlighten me
with the the code need to block the review toolbar form
pooping up whe I open an incoming spread sheet.

Also where do you place the code - personal?


It messes with my tool bar buttons and add's and add's
another row - it is driving me insane.

If I cant block it I want to know how to taer it out of
my excel. Line by line if need be.

Thanks you for your time.

Todd
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default vba code to block review toolbar

Hi Todd

You can use this line to disable it if you don't want to see it again
Application.CommandBars("Reviewing").Enabled = False
Set it to true to use it again


Or check out this posting from Jim Rech

From: Jim Rech )
Subject: Reviewing Toolbar
Newsgroups: microsoft.public.excel.misc
Date: 2003-01-09 04:22:21 PST


Actually I believe the annoying popup Reviewing toolbar is triggered by
certain custom file properties. Go into File, Properties and the Custom
tab. There you will probably find several custom properties that begin with
underscores (as I recall). If you delete them and save the workbook and
close the Reviewing toolbar, I think the next time you open the workbook the
toolbar will not appear.


And if you want a macro to clean this up, Jim posted this:
http://groups.google.com/groups?thre...gp13.phx .gbl


--
Regards Ron de Bruin
http://www.rondebruin.nl


"Todd F" wrote in message ...
In my little world I get many excel files sent to me.

I would be very greatful if someone was to enlighten me
with the the code need to block the review toolbar form
pooping up whe I open an incoming spread sheet.

Also where do you place the code - personal?


It messes with my tool bar buttons and add's and add's
another row - it is driving me insane.

If I cant block it I want to know how to taer it out of
my excel. Line by line if need be.

Thanks you for your time.

Todd



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11
Default Thank you - where do I put it vba code to block review toolbar

Thanks for the time - where do I place this code to make
it universally available to all workbooks opened on my
machine.
-----Original Message-----
Hi Todd

You can use this line to disable it if you don't want to

see it again
Application.CommandBars("Reviewing").Enabled = False
Set it to true to use it again


Or check out this posting from Jim Rech

From: Jim Rech )
Subject: Reviewing Toolbar
Newsgroups: microsoft.public.excel.misc
Date: 2003-01-09 04:22:21 PST


Actually I believe the annoying popup Reviewing toolbar

is triggered by
certain custom file properties. Go into File,

Properties and the Custom
tab. There you will probably find several custom

properties that begin with
underscores (as I recall). If you delete them and save

the workbook and
close the Reviewing toolbar, I think the next time you

open the workbook the
toolbar will not appear.


And if you want a macro to clean this up, Jim posted

this:
http://groups.google.com/groups?thre...biTMYDHA.3444%

40tk2msftngp13.phx.gbl


--
Regards Ron de Bruin
http://www.rondebruin.nl


"Todd F" wrote in

message ...
In my little world I get many excel files sent to me.

I would be very greatful if someone was to enlighten me
with the the code need to block the review toolbar form
pooping up whe I open an incoming spread sheet.

Also where do you place the code - personal?


It messes with my tool bar buttons and add's and add's
another row - it is driving me insane.

If I cant block it I want to know how to taer it out of
my excel. Line by line if need be.

Thanks you for your time.

Todd



.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7,247
Default Thank you - where do I put it vba code to block review toolbar

Todd,

Put it in a macro named Auto_Open in your personal.xls workbook.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Todd F" wrote in message
...
Thanks for the time - where do I place this code to make
it universally available to all workbooks opened on my
machine.
-----Original Message-----
Hi Todd

You can use this line to disable it if you don't want to

see it again
Application.CommandBars("Reviewing").Enabled = False
Set it to true to use it again


Or check out this posting from Jim Rech

From: Jim Rech )
Subject: Reviewing Toolbar
Newsgroups: microsoft.public.excel.misc
Date: 2003-01-09 04:22:21 PST


Actually I believe the annoying popup Reviewing toolbar

is triggered by
certain custom file properties. Go into File,

Properties and the Custom
tab. There you will probably find several custom

properties that begin with
underscores (as I recall). If you delete them and save

the workbook and
close the Reviewing toolbar, I think the next time you

open the workbook the
toolbar will not appear.


And if you want a macro to clean this up, Jim posted

this:
http://groups.google.com/groups?thre...biTMYDHA.3444%

40tk2msftngp13.phx.gbl


--
Regards Ron de Bruin
http://www.rondebruin.nl


"Todd F" wrote in

message ...
In my little world I get many excel files sent to me.

I would be very greatful if someone was to enlighten me
with the the code need to block the review toolbar form
pooping up whe I open an incoming spread sheet.

Also where do you place the code - personal?


It messes with my tool bar buttons and add's and add's
another row - it is driving me insane.

If I cant block it I want to know how to taer it out of
my excel. Line by line if need be.

Thanks you for your time.

Todd



.



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Thank you - where do I put it vba code to block review toolbar

Hi Todd

Open a new workbook

Alt-F11
InsertModule from the menubar
paste the sub in there
Alt-Q to go back to Excel

If you do Alt-F8 you get a list of your macro's
Select "test" and press Run

Sub test()
Application.CommandBars("Reviewing").Enabled = False
End Sub

Close the workbook (don't save it)

--
Regards Ron de Bruin
http://www.rondebruin.nl


"Todd F" wrote in message ...
Thanks for the time - where do I place this code to make
it universally available to all workbooks opened on my
machine.
-----Original Message-----
Hi Todd

You can use this line to disable it if you don't want to

see it again
Application.CommandBars("Reviewing").Enabled = False
Set it to true to use it again


Or check out this posting from Jim Rech

From: Jim Rech )
Subject: Reviewing Toolbar
Newsgroups: microsoft.public.excel.misc
Date: 2003-01-09 04:22:21 PST


Actually I believe the annoying popup Reviewing toolbar

is triggered by
certain custom file properties. Go into File,

Properties and the Custom
tab. There you will probably find several custom

properties that begin with
underscores (as I recall). If you delete them and save

the workbook and
close the Reviewing toolbar, I think the next time you

open the workbook the
toolbar will not appear.


And if you want a macro to clean this up, Jim posted

this:
http://groups.google.com/groups?thre...biTMYDHA.3444%

40tk2msftngp13.phx.gbl


--
Regards Ron de Bruin
http://www.rondebruin.nl


"Todd F" wrote in

message ...
In my little world I get many excel files sent to me.

I would be very greatful if someone was to enlighten me
with the the code need to block the review toolbar form
pooping up whe I open an incoming spread sheet.

Also where do you place the code - personal?


It messes with my tool bar buttons and add's and add's
another row - it is driving me insane.

If I cant block it I want to know how to taer it out of
my excel. Line by line if need be.

Thanks you for your time.

Todd



.





  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11
Default thanks


-----Original Message-----
Hi Todd

Open a new workbook

Alt-F11
InsertModule from the menubar
paste the sub in there
Alt-Q to go back to Excel

If you do Alt-F8 you get a list of your macro's
Select "test" and press Run

Sub test()
Application.CommandBars("Reviewing").Enabled = False
End Sub

Close the workbook (don't save it)

--
Regards Ron de Bruin
http://www.rondebruin.nl


"Todd F" wrote in

message ...
Thanks for the time - where do I place this code to

make
it universally available to all workbooks opened on my
machine.
-----Original Message-----
Hi Todd

You can use this line to disable it if you don't want

to
see it again
Application.CommandBars("Reviewing").Enabled = False
Set it to true to use it again


Or check out this posting from Jim Rech

From: Jim Rech )
Subject: Reviewing Toolbar
Newsgroups: microsoft.public.excel.misc
Date: 2003-01-09 04:22:21 PST


Actually I believe the annoying popup Reviewing

toolbar
is triggered by
certain custom file properties. Go into File,

Properties and the Custom
tab. There you will probably find several custom

properties that begin with
underscores (as I recall). If you delete them and

save
the workbook and
close the Reviewing toolbar, I think the next time you

open the workbook the
toolbar will not appear.


And if you want a macro to clean this up, Jim posted

this:
http://groups.google.com/groups?

threadm=eJQbiTMYDHA.3444%
40tk2msftngp13.phx.gbl


--
Regards Ron de Bruin
http://www.rondebruin.nl


"Todd F" wrote

in
message ...
In my little world I get many excel files sent to

me.

I would be very greatful if someone was to

enlighten me
with the the code need to block the review toolbar

form
pooping up whe I open an incoming spread sheet.

Also where do you place the code - personal?


It messes with my tool bar buttons and add's and

add's
another row - it is driving me insane.

If I cant block it I want to know how to taer it

out of
my excel. Line by line if need be.

Thanks you for your time.

Todd


.



.

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11
Default thanks


-----Original Message-----
Todd,

Put it in a macro named Auto_Open in your personal.xls

workbook.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Todd F" wrote in

message
...
Thanks for the time - where do I place this code to

make
it universally available to all workbooks opened on my
machine.
-----Original Message-----
Hi Todd

You can use this line to disable it if you don't want

to
see it again
Application.CommandBars("Reviewing").Enabled = False
Set it to true to use it again


Or check out this posting from Jim Rech

From: Jim Rech )
Subject: Reviewing Toolbar
Newsgroups: microsoft.public.excel.misc
Date: 2003-01-09 04:22:21 PST


Actually I believe the annoying popup Reviewing

toolbar
is triggered by
certain custom file properties. Go into File,

Properties and the Custom
tab. There you will probably find several custom

properties that begin with
underscores (as I recall). If you delete them and

save
the workbook and
close the Reviewing toolbar, I think the next time you

open the workbook the
toolbar will not appear.


And if you want a macro to clean this up, Jim posted

this:
http://groups.google.com/groups?

threadm=eJQbiTMYDHA.3444%
40tk2msftngp13.phx.gbl


--
Regards Ron de Bruin
http://www.rondebruin.nl


"Todd F" wrote

in
message ...
In my little world I get many excel files sent to

me.

I would be very greatful if someone was to

enlighten me
with the the code need to block the review toolbar

form
pooping up whe I open an incoming spread sheet.

Also where do you place the code - personal?


It messes with my tool bar buttons and add's and

add's
another row - it is driving me insane.

If I cant block it I want to know how to taer it

out of
my excel. Line by line if need be.

Thanks you for your time.

Todd


.



.

  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default vba code to block review toolbar


Todd F wrote:
*In my little world I get many excel files sent to me.

I would be very greatful if someone was to enlighten me
with the the code need to block the review toolbar form
pooping up whe I open an incoming spread sheet.

Also where do you place the code - personal?


It messes with my tool bar buttons and add's and add's
another row - it is driving me insane.

If I cant block it I want to know how to taer it out of
my excel. Line by line if need be.

Thanks you for your time.

Todd *


Cudos to Ron de Bruin and Jim Resch. I have suffered for years with
Reviewing Toolbar, in my own Word docs, and when it showed up in an
Excel file too, I went looking for, and found their answers.
But for solving my own creating of Word docs with Reviewing Toolbar I
used Word to open the Normal.dot template (File - Open - C:\Documents
and Settings\my username\Application
Data\Microsoft\Templates\Normal.dot)
Once opened, I turned off the Reviewing Toolbar (View - Toolbars -
Reviewing toolbar) and then saved my changes.
Now when I create a new document, I'm no longer one of those that
generates documents that require the Reviewing toolbar.



--
jacksprat
------------------------------------------------------------------------
Posted via http://www.mcse.ms
------------------------------------------------------------------------
View this thread: http://www.mcse.ms/message818309.html

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
How can I stop the Web and Review toolbar opening up randomly? D Excel Discussion (Misc queries) 1 June 27th 06 07:19 PM
review toolbar reappears dave Excel Discussion (Misc queries) 1 April 13th 05 03:50 PM
code that might be causing error - please review and comment bruce forster Excel Programming 4 May 21st 04 03:06 AM
VB6 with Excel Objects: Please review my code Kurt Remlin Excel Programming 6 May 1st 04 03:36 AM
Two Questions about the Following Block of Code Greener Excel Programming 0 October 9th 03 06:26 PM


All times are GMT +1. The time now is 09:51 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"