Can i make a workbook protected

Andrew XJ

Board Regular
Joined
Feb 21, 2002
Messages
77
I want to protect my workbook so that when user delete the workbook, a message will prompt to the user and warn him on the deletion. How can i do this ? Thx


Regards
Andrew XJ
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
If can't protect it with a open workbook, can i change some windows setting to protect it? I am using Windows 2000 Pro.

regards
Andrew XJ
 
Upvote 0
Andy, through vba the setattr makes the windows property of the workbook read-only. Makes it hard to overwrite in Excel.

Code:
Sub RdOnly()
SetAttr activeworkbook.fullname, vbReadOnly
End Sub

Manually, which you should do with your sys files (unless you update them a lot), right click on the file in your Windows Explorer, select "Properties," and check the read only checkbox.

Hope this helps.

_________________
Cheers,<font size=+2><font color="red"> Nate<font color="blue">O</font></font></font>
This message was edited by NateO on 2002-03-18 19:00
 
Upvote 0

Forum statistics

Threads
1,213,494
Messages
6,113,981
Members
448,538
Latest member
alex78

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top