Best way to protect Excel VBA code?

前端 未结 2 456
鱼传尺愫
鱼传尺愫 2020-12-10 13:29

I\'ve put together a simple Excel database that performs a few macro functions and I need to distribute this database to a few people - but they cannot see how the macro fun

2条回答
  •  情书的邮戳
    2020-12-10 14:01

    You can create Automation Add In.

    An Automation Add In provides several advantages

    • Execution Speed : An Automation Add In written in VB6 is compiled to native machine code which runs much faster than the interpreted VBA languange.

    • Security : Unlike an XLA add in, you never distribute the source code to the end users. If your code has proprietary information or intellectual property value, that remains safely protected on your own computer. It is never distributed to the user. Your code can never be compromised.

    http://www.cpearson.com/excel/automationaddins.aspx

提交回复
热议问题