muck Posted May 14, 2009 Posted May 14, 2009 I am getting ready to give a AutoCAD VBA program that I have written. How do I write a macro to start the program at allows limited viewing and code protection? I have allways used project explorier to double click a form to start things. Now I need another way to start a protected copy of my program. Thank you, Quote
SEANT Posted May 14, 2009 Posted May 14, 2009 A VBA project (.DVB) can be password protected: See VBAIDE – Tools – Properties – Protection. That “protection” is not particularly robust as a few methods to crack the password are available on the internet. The more bulletproof method would be to isolate the critical code logic by compiling it to a DLL with VB6. That DLL can then be referenced from a VBA project that contains only code enough to act a calling routine. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.