Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Now that I know that there is an easy workaround to the standard way of locking and password-protecting VBA code, I'd like to move on to more effective ways of protecting code. I am to deliver an Excel-based tool to a client, but would like something more than simple annoyance-type protection that will only deter the very laziest of hackers.

Are there any options in Excel-VBA, or do we really have to compile a separate application and forget about our Excel-based interface? Suggestions and enlightenment welcome!

Thanks

share|improve this question

4 Answers

up vote 5 down vote accepted

The easiest and most efficient way is to move your VBA code to a VB6 compiled Com/automation addin.

Or you may want to consider a .Net (with obfuscator) solution if performance is not important.

share|improve this answer
I was hoping for an easier solution... Baahh! I guess there's no free lunch. Answer accepted. – Jean-François Corbett Nov 11 '09 at 9:43
+1. I was going to use the com approach when I looked at varrious methods of protecting an addin I considered commercialising. It was clearly the most secure option. And I second that obfuscation can be very effective – brettdj Oct 26 '11 at 10:19

Obfuscation is a set of techniques that hide the intent of your Excel VBA program without changing its runtime behavior e.g. obfuscated VBA code will run in both 32/64 bit Office 2010/2013 versions, if your original code was designed to do so.

When obfuscation is properly applied, it can increase the protection against hackers by orders of magnitude, while leaving your Excel application intact. Obfuscation is commonly used in .Net and Java environments for years (as Charles Williams confirmed) and has been helping companies protect their intellectual property.

Please read more details below:

http://www.spreadsheet1.com/s1-crunchcode.html

share|improve this answer
+1 for the useful answer, and welcome to Stack Overflow! Here's something you should know: Stack Overflow etiquette suggests that when posting a recommendation for a commercial product, you make it clear that it is commercial and whether you're connected with it. – RichieHindle May 2 at 5:54

write the code against a excel object in Access then made the access file in to a .mde http://www.blog.methodsinexcel.co.uk/?s=Access+MDB Poor, but cheep ;-)

share|improve this answer

No need to convert to another language - you should be able to obfuscate most of your VBA code through www.vbsobfuscator.com

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.