in the VBA window you'll see various items listed in the projects window, find the section called 'Microsoft Excel Objects' for your workbook and expand it, scroll to the bottom and you'll see an object called 'ThisWorkbook'.
Open it up and you'll see a blank white sheet, there'll be 2 drop down menus at the top. Select 'Workbook' in the left hand one and then in the right you'll have all kinds of options to view. Each item in the right hand drop down box is an event that you can put code it.
For example, you could put the command 'cancel = true' in the 'before_save' event and then no user will be able to save it.
And yes, the problem with that is then you can't save it......so you'd need to put in something like
You can do the same for all kinds of events like double clicking, etc. To disable the ESC key put
in the workbook_open event. Remember to enable it again on workbook close though....
Bookmarks