Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I programmatically remove a (known) password from an Excel VBA project?

To be clear: I want to remove the password from the VBA Project, not the workbook or any worksheets.

share|improve this question
Did some googling - it seems there is no direct way - you have to use a sendkeys kludge http://www.mrexcel.com/forum/showthread.php?t=49034 – DJ. Nov 7 '08 at 16:44
The marked answer is NOT the best.... the best answer has come years later by Uygar Y – Jeremy Thompson Apr 16 at 4:41

6 Answers

up vote 6 down vote accepted

This has a simple method using SendKeys to unprotect the VBA project. This would get you into the project, so you'd have to continue on using SendKeys to figure out a way to remove the password protection: http://www.pcreview.co.uk/forums/thread-989191.php

And here's one that uses a more advanced, somewhat more reliable method for unprotecting. Again, it will only unlock the VB project for you. http://www.ozgrid.com/forum/showthread.php?t=13006&page=2

I haven't tried either method, but this may save you some time if it's what you need to do...

share|improve this answer
1  
I have the code. What to do with? I can't open VBEditor, nor execute something, because the project is locked, so, any new script is not possible to execute!? – serhio Aug 5 '12 at 21:41
+ 1 :) @serhio: Another way using APIS – Siddharth Rout Apr 25 at 9:07

Another way to remove VBA project password is;

  • Open xls file with a hex editor. (very simple use hexedit.exe from http://www.physics.ohio-state.edu/~prewett/hexedit/)
  • Search for DPB
  • Replace DPB to DPx
  • Save file.
  • Open file in Excel.
  • Click "Yes" if you get any message box.
  • Set new password from VBA Project Properties.
  • Close and open again file, then type your new password to unprotect.

Voila. It works great! Thanks.

share|improve this answer
This worked for me. I had to also click "Ok" a few times when viewing the VBA code. – The Dog May 3 '12 at 5:04
3  
And one more addition to the original answer: If you have some xlsx file, open it in Excel and "Save As" xls. And then follow the above steps... – Uygar Y May 7 '12 at 12:01
If you have an .xlsx file you can also unzip it, do the search/replace on the xl/vbaProject.bin file and then re-zip. – Sander Steffann yesterday

I found this here that describes how to set the VBA Project Password. You should be able to modify it to unset the VBA Project Password.

This one does not use SendKeys.

Let me know if this helps! JFV

share|improve this answer

In VBA use

ActiveWorkbook.Unprotect (Password)

EDIT: There is an ActiveWorkbook.VBProject.Protection property, but it is ReadOnly. So I guess the answer is: You can't. Sorry.

share|improve this answer
1  
The Unprotect function doesn't have anything to do with a VBA project password. – CoderDennis May 24 '11 at 14:57

As others have said, you can't outside of using SendKeys.

However I tried using SendKeys with Excel 2002 and never got it to work.

If there are just a few projects you can open them and then select them programmatically, but you'll still have to click on each and enter the password.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.