ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Protect Sheet - VB code to specify password (https://www.excelbanter.com/excel-programming/326599-protect-sheet-vbulletin-code-specify-password.html)

Darin Kramer

Protect Sheet - VB code to specify password
 

Howdie,

Sheets("A").protect is how to protect a sheet, and similar
Sheets("B").Unprotect.
I run a Macro that first unprotects a sheet, then when Macro is finished
Re protects the sheet.

I want to now specify a password, lets say ABC.
Whats the VB to do that....?

Thanks

D

*** Sent via Developersdex http://www.developersdex.com ***

Xcelion

Protect Sheet - VB code to specify password
 
Hi Darin,

Sheet("B").Unprotect "ABC"
assuming "ABC" is your password

Thanks
Xcelion


"Darin Kramer" wrote:


Howdie,

Sheets("A").protect is how to protect a sheet, and similar
Sheets("B").Unprotect.
I run a Macro that first unprotects a sheet, then when Macro is finished
Re protects the sheet.

I want to now specify a password, lets say ABC.
Whats the VB to do that....?

Thanks

D

*** Sent via Developersdex http://www.developersdex.com ***


Mauro Gamberini[_3_]

Protect Sheet - VB code to specify password
 
Public sub yourMacro()

Shetts("A").Unprotect "ABC"
'Your code
Sheets("A").Protect "ABC"

End Sub

--
----------------------------
Mauro Gamberini

Sheets("A").protect is how to protect a sheet, and similar
Sheets("B").Unprotect.
I run a Macro that first unprotects a sheet, then when Macro is finished
Re protects the sheet.

I want to now specify a password, lets say ABC.
Whats the VB to do that....?





All times are GMT +1. The time now is 12:36 AM.

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