XL98: Protect Method Password Is Not Applied to Worksheet

ID: Q184100

The information in this article applies to:

SYMPTOMS

When you use the Protect method in a Visual Basic for Applications macro to apply password protection to a worksheet, Microsoft Excel does not apply the password to the worksheet.

CAUSE

This problem occurs when both of the following conditions are true:

NOTE: Microsoft Excel may not apply password protection depending on the values of the arguments for the Protection statement. In some cases, Microsoft Excel applies worksheet protection but does not apply a password even if you specify a password in the macro.

WORKAROUND

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

   http://www.microsoft.com/support/supportnet/refguide/

To work around this problem, use either of the following methods.

Method 1

Use the ActiveSheet.Protect command only once and supply all the arguments, including the password. For example, use the following macro:

   Sub ProtectSheet()

       ActiveSheet.Protect password:="pw", Contents:=True, _
           Scenarios:=False, DrawingObjects:=True, UserInterfaceOnly:=True

   End Sub

Method 2

Set one of the Protect method arguments to False. To do this, use either of the following methods:

STATUS

Microsoft has confirmed this to be a problem with the products listed at the beginning of this article.

MORE INFORMATION

Microsoft Excel 98 Macintosh Edition allows you to add an additional layer of protection by applying password protection to a previously protected sheet. You can add this protection programmatically.

In earlier versions of Microsoft Excel, using the ActiveSheet.Protect command more than once has no effect. In Microsoft Excel 98, using the command a second time with a password applies password-level security to a previously protected sheet as long as the arguments for Contents, Scenarios, and DrawingObjects are not all set to True. When all the arguments are set to True, Microsoft Excel protects the active sheet but does not apply password-level protection. The value of the UserInterfaceOnly argument has no effect on this behavior.

Example

The following sample code demonstrates the problem:

   Sub Test()

       ActiveSheet.Protect
       ActiveSheet.Protect password:="pw", contents:=True, _
           Scenarios:=True, DrawingObjects:=True, UserInterfaceOnly:=False

   End Sub

REFERENCES

For more information about protecting information, from the Visual Basic Editor, click the Office Assistant, type "Protect," click Search, and then click to view "Protect Method."

NOTE: If the Assistant is hidden, click the Office Assistant button on the Standard toolbar. If the Assistant is not able to answer your query, please see the following article in the Microsoft Knowledge Base:

   ARTICLE-ID: Q176476
   TITLE     : OFF: Office Assistant Not Answering Visual Basic Questions

Additional query words: XL98 vba
Keywords          : kbprg kbdta kbdtacode xlvbainfo OffVBA xlmac 
Version           : MACINTOSH:98
Platform          : MACINTOSH
Issue type        : kbbug
Solution Type     : kbpending

Last Reviewed: May 18, 1999