View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Mauro Gamberini[_3_] Mauro Gamberini[_3_] is offline
external usenet poster
 
Posts: 12
Default 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....?