Compiling

P

Pat

Hi All,

I am looking for information on compiling
Word VBA, first of all Word97 VBA
or any other method of hiding source
program in VBA for Word.

Could anyone help me?

Regards,
Pat
 
N

Norman Yuan

Within VBA environment, you cannot hide your code except very weak
protecction of setting project password.

The common practice in this regard is to move major code logic into an VB
ActiveX DLL project with necessary code change (or no change at all,
depending on code itself), compile it into an ActiveX DLL file, and then
call the DLL in VBA code. This VBA project will only contain a few macros
and very simple code that call "invisible" code in DLLs. Of course you need
VB5/6. You can also use VS.NET (2002/2003/2005) for this purpose with a
little trick applied (if you know MS .NET stuff).
 
P

Pat

Thank you very much.
I have to find out more about that to be able to use the method.
I have VB5.

Regards
Pat
 

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

Top