In a shared workbook i don't want the other users tu use "Save As" option, only the "Save" option, o prevent that they can save the workbook with another name.
In order to do that i use this code:
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
If SaveAsUI = True Then Cancel = True
End Sub
Is it possible to do the same thing with the Tool/Option alternative?
/Roger S