Hi JB!
If you are saving after AllInternalPasswords has done its job, then
there must be a subroutine that is coming in and imposing the password
again.
Open again
Remove passwords again
Right click a worksheet tab
Select View Code
Select the workbook name in the top left Project Explorer window
Double click the ThisWorkbook module
Take a look at any event handling code in there

Signature
Regards
Norman Harker MVP (Excel)
Sydney, Australia
njharker@optusnet.com.au
Excel and Word Function Lists (Classifications, Syntax and Arguments)
available free to good homes.
> HAHA,
> I didn't refresh before I posted my other reply!!
[quoted text clipped - 5 lines]
>
> j.b.
jb - 01 Apr 2004 12:53 GMT
> Open again
> Remove passwords again
[quoted text clipped - 3 lines]
> Double click the ThisWorkbook module
> Take a look at any event handling code in there
This is on workbook tab:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
End Sub
-----------------
this is on general tab:
Sub Macroprotect()
'
' Macroprotect Macro
' Macro recorded 3/12/99 by katina *********
'
'
ActiveWorkbook.Protect Structure:=True, Windows:=False
ActiveSheet.Protect DrawingObjects:=True, Contents:=True,
Scenarios:=True
ActiveWorkbook.Unprotect
ActiveSheet.Unprotect
End Sub
again though, it's only on excel xp (my machine) that I cant edit the files
Norman Harker - 01 Apr 2004 14:48 GMT
Hi jb!
Check for code on the ThisWorkbook tab
It looks like this is where the problem is.

Signature
Regards
Norman Harker MVP (Excel)
Sydney, Australia
njharker@optusnet.com.au
Excel and Word Function Lists (Classifications, Syntax and Arguments)
available free to good homes.
>
>> Open again
[quoted text clipped - 30 lines]
> again though, it's only on excel xp (my machine) that I cant edit
> the files