View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Ted Theodoropoulos Ted Theodoropoulos is offline
external usenet poster
 
Posts: 9
Default Compiling a workbook...

You could move your functions from VBA into a com add-in.

Since this is a compiled dll your code is much more secure,
if you use VB.Net to do this be sure to use a code obfuscator
as .net executable and dll's effectivel contain all the source which
can thus be disassembled.

Another great advance from micro$oft.

Keith


Thanks to both of you guys for your suggestions. The dll idea is a
good one but I'm trying hard to avoid having to run an installation
routine. I think that I would have to run one to register the dll on
the machine. Correct?