View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson[_3_] Dave Peterson[_3_] is offline
external usenet poster
 
Posts: 2,824
Default Disable save, but not save as

Non-VBA approach:

Either use Windows Explorer to mark the file ReadOnly
or even use a password to open for updating.

When you save your master,
file|SaveAs|Tools|General Options|
give it a nice password to modify.

This is where it's hidden in xl2002.
In earlier versions, I think it was just under: File|SaveAs|Options



Wstohler wrote:

I am trying to disable saving in order to not overwrite a master file. But I still want others to be able to save as a different file. I tried this as a possibility:

Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
If ThisWorkbook.Name = "master.xls" Then
MsgBox "Can not save with this name - do saveas with a new name"
Cancel = True
End If
End Sub

But it won't let me do the 'save as' action either. Any Suggestions?

Thanks,
Wes


--

Dave Peterson