5 pts.
 How do I disable save/save as and control +s and f12 in excel 2007?
I want o disable those and only allow save feature through the macro I established

Software/Hardware used:
excel 2007
ASKED: September 27, 2010  7:10 PM
UPDATED: October 1, 2010  10:44 AM

Answer Wiki:
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 Sen   22,035 pts.
All Answer Wiki Contributors:  Subhendu Sen   22,035 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _