Obfuscate VBA code - necsessary or not

Hi
Is the VBA code fully protected with XLSPadlock? or is it a good idea to obfuscate the code in case someone makes the way into the code.
I just like to get an idea if it is worth the effort to scrample the code or if I can rely on XLSPadlock to protect my code.

Regards
Kim

The best protection is to let XLS Padlock compile parts of your VBA code into bytecode thanks to its integrated VBA compiler. You can also apply code obfuscation if you have a tool to non-compiled VBA code portions. However, VBA obfuscation doesn’t prevent someone from copying your code. VBA compilation does since the original VBA code doesn’t exist anymore and compiled code can’t be run outside your secure application made with XLS Padlock.