ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   password problem with protect worksheet (https://www.excelbanter.com/excel-programming/272529-password-problem-protect-worksheet.html)

Soe

password problem with protect worksheet
 
i tried to protect worksheet with password, then unprotect again, but it
doesn't work, it shows password error.
i simply used like

activeworksheet.protect password := "abc"

then
activesheet.unprotect password:="abc"

anybody can advice where i m wrong?



Adriaan vd Linde

password problem with protect worksheet
 
This is a copy of coding that is running in an apps of
mine.

Remember to protect each sheet by running a VBA prog

Sub MyProtect()
ActiveWorkbook.Protect Password:="ZAC"
ActiveSheet.Protect Password:="ZAC"
End Sub

Sub MyUnprotect()
ActiveWorkbook.Unprotect Password:="ZAC"
ActiveSheet.Unprotect Password:="ZAC"
End Sub



-----Original Message-----
i tried to protect worksheet with password, then

unprotect again, but it
doesn't work, it shows password error.
i simply used like

activeworksheet.protect password := "abc"

then
activesheet.unprotect password:="abc"

anybody can advice where i m wrong?


.


Steve B[_2_]

password problem with protect worksheet
 
Try ActiveSheet.Protect "abc"
and ActiveSheet.UnProtect "abc"
-----Original Message-----
i tried to protect worksheet with password, then

unprotect again, but it
doesn't work, it shows password error.
i simply used like

activeworksheet.protect password := "abc"

then
activesheet.unprotect password:="abc"

anybody can advice where i m wrong?


.


Soe Nandar

password problem with protect worksheet
 
ur suggestion works
thanx


"Steve B" wrote in message
...
Try ActiveSheet.Protect "abc"
and ActiveSheet.UnProtect "abc"
-----Original Message-----
i tried to protect worksheet with password, then

unprotect again, but it
doesn't work, it shows password error.
i simply used like

activeworksheet.protect password := "abc"

then
activesheet.unprotect password:="abc"

anybody can advice where i m wrong?


.





All times are GMT +1. The time now is 04:16 PM.

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