how to protect VB script

  • Thread starter Thread starter Marek
  • Start date Start date
M

Marek

my excel program uses vb script,
some subs in my script also access codemodule adding events or some su
statements.



but how to protect my vb from clients,
for example i dont want that anybody can view my code

it is possible in excel ????



thank
 
Hi
-In the vba editor, select your project.
- menu Tools > 'VBAProject' Properties (or right-click the project in the
Project Explorer and choose Properties), tab Protection:
-check 'Lock Project For Viewing'
-and enter a password.

However you need to know that this type of protection is similar to
protecting an excel sheet: not very strong. Many free software found on the
web crack the project in a minute. But it's better than nothing. Also, while
protected , the code is not encrypted.

Regards,
Sebastien
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top