Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 21
Default Excel 2002 - 2 problems

1. Every so often, when I open a workbook I have received
from a colleague, Excel automatically displays the
Reviewing toolbar.

How can I prevent this toolbar from making it's unwanted
appearance (permanently please) ?

2. I had a problem with Excel yesterday, when it refused
to open. It said that it had encountered a problem with
my Personal.xls file, and that it recommended disabling
it - I accepted this option, and it re-started ok.

I then opened Personal.xls (it was fine - no problems,
and I can compile it ok as well). The problem is that it
does not appear when I now open Excel (it is in my
XlStart directory). Can anyone suggest what I need to do
to include it, so that it is always present ?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default Excel 2002 - 2 problems

Hi Alan,

I assume that you are using xl 2003.

For your second problem, in Excel try:

Help | About Microsoft Excel | Select Disabled Items button |
Select Personal.xls | Re-Enable

For your first problem, Jim Rech recently posted the following:
--------------------------------- Start
From: Jim Rech )
Subject: Delete toolbar
View: Complete Thread (2 articles)
Original Format
Newsgroups: microsoft.public.excel.misc
Date: 2004-09-29 07:44:34 PST


The Reviewing toolbar in Excel pops up whenever you open a workbook that has
been emailed from within Excel "for review". There may be other ways to
make this happen too. If you do a File, Properties you'll see the custom
file properties that have been added that triggers this.

You can kill the added file properties manually or run the below macro to do
it. This macro is in my Personal and attached to a toolbar button because I
feel the same way as you about this toolbar.

If the toolbar pops up every time you start Excel then perhaps there is a
workbook in your XLSTART folder that is the cause.

--
Jim Rech
Excel MVP

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

---
Regards,
Norman



"Alan Hutchins" wrote in message
...
1. Every so often, when I open a workbook I have received
from a colleague, Excel automatically displays the
Reviewing toolbar.

How can I prevent this toolbar from making it's unwanted
appearance (permanently please) ?

2. I had a problem with Excel yesterday, when it refused
to open. It said that it had encountered a problem with
my Personal.xls file, and that it recommended disabling
it - I accepted this option, and it re-started ok.

I then opened Personal.xls (it was fine - no problems,
and I can compile it ok as well). The problem is that it
does not appear when I now open Excel (it is in my
XlStart directory). Can anyone suggest what I need to do
to include it, so that it is always present ?



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
excel 2002 problems in windows 7? George[_10_] Excel Discussion (Misc queries) 2 February 24th 10 03:50 AM
Serious Crashing Problems in Excel 2002 mike_tyrer[_2_] Excel Programming 1 September 24th 04 04:38 PM
Serious Crashing Problems in Excel 2002 mike_tyrer Excel Programming 1 September 24th 04 11:33 AM
Problems with Excel 2000 from 2002 confused1111 Excel Programming 2 April 21st 04 10:46 PM
problems with .xml and Excel 2002 Bernie Yaeger Excel Programming 0 February 25th 04 05:15 PM


All times are GMT +1. The time now is 07:38 PM.

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

About Us

"It's about Microsoft Excel"