Hi isma786,
You have to use vba to do this. As a starting point try the following code, calling the disable sub from the workbook on open event, and the disable routine from the before close event. It would probably be a good idea to call them from a couple of buttons, before you set them up to be auto, just to be sure that they are doing what you wanted.
Sub DisableAllShortcutMenus()
CommandBars("Toolbar List").Enabled = False
CommandBars("Worksheet Menu Bar").Enabled = False
CommandBars("System").Enabled = False
CommandBars("Standard").Visible = False
CommandBars("Formatting").Visible = False
End Sub
Sub EnableAllShortcutMenus()
CommandBars("Toolbar List").Enabled = True
CommandBars("Worksheet Menu Bar").Enabled = True
CommandBars("System").Enabled = True
CommandBars("Standard").Visible = True
CommandBars("Formatting").Visible = True
End Sub
Chris
IT would be the perfect job......if it didn't have users!!!