For Excel 2003,
After you press ALT+F11, put the following VBA code in "Workbook" object
Private Sub Workbook_Open()
disablesaveas
End Sub
Then Add "Module" and paste this in
Sub disblesaveas()
CommandBars("File").Controls("Save As...").Enabled = False
End Sub
Then close the file and open it again
For Excel 2007 users,
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
If SaveAsUI Then Cancel = True
End Sub
Just do for the rest.
Last Wiki Answer Submitted: October 1, 2010 10:44 am by Subhendu Sen22,035 pts.
All Answer Wiki Contributors: Subhendu Sen22,035 pts.
If you live outside the United States, by submitting your email address you consent to having your personal data transferred to and processed in the United States.