Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have prepared macros cantained xls file which contains some editable
(addable) data, I don't have any problem if anyone can add data. I don't want others to copy the Entire data and the whole file. Is their any option rather to protect macro, protect sheet and workbook. Means to say to protect coping of xls file. regadrs, Harshad |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Just write down "application.cutcopymode=false" in worksheet's deactivate event.it wud look like this. Private Sub Worksheet_Deactivate() Application.CutCopyMode = False End Sub "Harshad" wrote: I have prepared macros cantained xls file which contains some editable (addable) data, I don't have any problem if anyone can add data. I don't want others to copy the Entire data and the whole file. Is their any option rather to protect macro, protect sheet and workbook. Means to say to protect coping of xls file. regadrs, Harshad |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I don't think you can stop people from copying your file.
They could use windows explorer to copy to a new location and nothing you do in excel can prevent that. Harshad wrote: I have prepared macros cantained xls file which contains some editable (addable) data, I don't have any problem if anyone can add data. I don't want others to copy the Entire data and the whole file. Is their any option rather to protect macro, protect sheet and workbook. Means to say to protect coping of xls file. regadrs, Harshad -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
File copying is handled by your operating system and not by XL. The file has
no say in whether it gets copied or not... -- HTH... Jim Thomlinson "Harshad" wrote: I have prepared macros cantained xls file which contains some editable (addable) data, I don't have any problem if anyone can add data. I don't want others to copy the Entire data and the whole file. Is their any option rather to protect macro, protect sheet and workbook. Means to say to protect coping of xls file. regadrs, Harshad |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can I protect all excel tabs in a file with one password entry? | Excel Discussion (Misc queries) | |||
how to protect data/file excel | Excel Discussion (Misc queries) | |||
Excel 2003 Protect file from being deleted | Excel Discussion (Misc queries) | |||
password protect a file in Excel 2007 | Excel Discussion (Misc queries) | |||
How do I use VC++6.0 to protect a excel file to readonly | Excel Worksheet Functions |