ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   How to programmatically check if a workbook is protected t? (https://www.excelbanter.com/excel-programming/310054-how-programmatically-check-if-workbook-protected-t.html)

uno@korsmaa

How to programmatically check if a workbook is protected t?
 
Hello

How to programmatically check if a workbook is protected or not?

Rgs
Uno Kõrsmaa



Tom Ogilvy

How to programmatically check if a workbook is protected t?
 
For a workbook

With Workbook
if .ProtectWindows or
.ProtectStructure then

End if
End With


For a Worksheet

With ActiveSheet
if .ProtectContents = True or _
.ProtectDrawingObjects = True or _
.ProtectScenarios = True or _
.ProtectMode = True then

' sheet is protected
End if
End With



If you want to know if a workbook is password protected, I believe you have
to attempt to open it and see if the attempt fails (suppressing the prompt
and handling the error)

--
Regards,
Tom Ogilvy


"uno@korsmaa" wrote in message
...
Hello

How to programmatically check if a workbook is protected or not?

Rgs
Uno Kõrsmaa





Uno Kõrsmaa

How to programmatically check if a workbook is protected t?
 


Thank you very much.

Kind regards
Uno Kõrsmaa

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!


All times are GMT +1. The time now is 02:01 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com