Thread
:
Protecting/Unprotecting Workbook
View Single Post
#
2
Posted to microsoft.public.excel.programming
Steven Revell
external usenet poster
Posts: 35
Protecting/Unprotecting Workbook
Sub LockIT()
If activeworkbook.protectcontents = False then activeworkbook.protect "mypass"
end Sub
Sub UnlockIT()
if activeworkbook.protectcontents = true then activeworkbook.unprotect "mypass"
End Sub
Reply With Quote
Steven Revell
View Public Profile
Find all posts by Steven Revell