maybe some suggestions from Debra Dalgleish's site:
http://www.contextures.com/xlfaqApp.html#ReadOnly
http://www.contextures.com/xlfaqApp.html#AlreadyOpen
When you open a file in excel, excel creates some files in your windows temp
folder.
If excel crashes, then these files don't get cleaned up. You can clean them up
yourself.
Windows start button|run
%temp%
and clean up all you want. (I delete everything--just don't be in the middle of
an install!)
And sometimes excel leaves a hidden instance running. Some versions of Windows
(NT/2k) will allow you to kill those processes.
If excel looks like it's not running:
Alt-ctrl-delete
Task manager
Processes
look for excel.exe and kill it.
(serves the same purpose as rebooting and it's a lot quicker).
Win98 doesn't have this kind of option. I have a .vbs file on my desktop that
tries to unhide any hidden excel processes.
I close all the excel programs I can see and run this until I don't see any
more:
Copy this to notepad and save it as: UnHideXL.VBS
====================
dim myXL
On Error Resume Next
Set myXL = GetObject(, "Excel.Application")
If Err.Number = 429 Then
msgbox "excel is not running"
else
myxl.visible = true
end If
On Error GoTo 0
Set myxl = nothing
=====================
Then just run this script to clean things up.