Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / Programming / September 2007

Tip: Looking for answers? Try searching our database.

Help on Macro

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Storm - 17 Sep 2007 17:06 GMT
Good morning.  A couple of weeks ago, someone from this forum, was very
helpful in my question on how to unprotect protected worksheets, with similar
passwords, with a macro.  Below is a copy of the VB script I was given.  It
worked but then I realized, the password "hi" is now visible under the macro
script.  Is there a way to rewrite the code so that it will not show the
password and instead when the macro is run, one has to enter the password
before the macro can unprotect the protected worksheets?

thank you very much,
Storm

Option Explicit
sub testme()
 dim myPWD as string
 dim wks as worksheet
 myPWD = "hi"
 for each wks in activeworkbook.worksheets
   wks.unprotect password:=mypwd
 next wks
end sub
Dave Peterson - 17 Sep 2007 17:12 GMT
You could encrypt the password and then unencrypt it when you need to use it.

But easier would be to protect the workbook's project.
Inside the VBE
select your project
Tools|VBAProject Properties|Protection tab

Lock it for viewing and give it a memorable password.

Be aware that this password isn't going to stop the really dedicated--but it
will keep most people out.

> Good morning.  A couple of weeks ago, someone from this forum, was very
> helpful in my question on how to unprotect protected worksheets, with similar
[quoted text clipped - 16 lines]
>   next wks
> end sub

Signature

Dave Peterson

Bill Renaud - 18 Sep 2007 06:57 GMT
Use an InputBox statement to prompt the user, like so:

Sub UnlockAllWorksheets()
 Dim strPassword As String
 Dim ws As Worksheet

 strPassword = InputBox("Enter the password for all worksheets: ", _
                         "Unlock Worksheets")

 For Each ws In ActiveWorkbook.Worksheets
   ws.Unprotect password:=strPassword
 Next ws
End Sub
Signature

Regards,
Bill Renaud

 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.