Lock down Microsoft Excel macro

前端 未结 6 1597
自闭症患者
自闭症患者 2020-12-05 07:50

I\'ve spent some time writing an Excel Macro that is potentially worth money to a lot of companies.

How can I lock down the macro to prevent people seeing the source

6条回答
  •  庸人自扰
    2020-12-05 08:17

    you can set a password to your vba code but this can be quite easily broken up.

    you can also create an addin and compile it into a DLL. See here for more information. That's at least the most secure way to protect your code.

    Regards,

提交回复
热议问题