I Know three ways of making this more difficult for someone
Using the Before RightClick Event
Setting Cancel to True (This Disallows the Context Menu to Pop Up)
You Could set the toolbars to be disabled
Code:
For Each cmd In Application.CommandBars
cmd.Enabled = False
Next cmd
Set this in the Workbook Activate (Remeber to Enable some After the Workbook is deactivated)
you then need to stop people who know the Keyboard copy command
with the Application.onKey "^c" , "Procedurename" you can stop the control + C copy Method again remember to switch this off before you leave the workbook
you can also stop saving from file by using the
Workbook_BeforeSave Event
all these make saving and copying data more of a problem and will stop most people from copying or saving, but if you know what you are doing there are easy ways to crack the security in Excel and these procedures will not protect you against that.
Hope This Helps
David