This will disable the control-c, control-v, and control-x shortcuts.
Application.OnKey "^c", ""
Application.OnKey "^v", ""
Application.OnKey "^x", ""
This restores them.
Application.OnKey "^c"
Application.OnKey "^v"
Application.OnKey "^x"
Disables the right click menu in the cell.
CommandBars("Cell").Enabled = False
Removes Excel Menu Bar
CommandBars("Worksheet Menu Bar").Enabled = False
Obviously set enable to TRUE before closing the workbook
Hope this helps,
Rick