View Single Post
  #2   Report Post  
Dave Peterson
 
Posts: n/a
Default

You can protect a few different things on a worksheet.

Dim wks as worksheet
set wks = activesheet

If wks.ProtectContents _
Or wks.ProtectDrawingObjects _
Or wks.ProtectScenarios Then
msgbox "It's protected"
end if





wrote:

I've used ActiveWorkbook.ProtectStructure to return a True/False value
indicating that a workbook is password protected.

Does similar syntax exist for the active sheet? I have tried a number
of variations but can't find it, and for some reason (reason conversion
to XL 2003?) I don't get those popup windows that suggest my next
choice of code words.

Any ideas? Thanks.


--

Dave Peterson