Code Protection

Code Protection

Anonymous
Not applicable
210 Views
3 Replies
Message 1 of 4

Code Protection

Anonymous
Not applicable
What is the best way to protect VBA code in AutoCAD and Excel from
being copied or stolen?

Is it possible to encrypt VBA code and still have it function properly?

TIA

--
Gene Redmon
Corporate CADD Manager
Hunsaker and Associates Irvine, Inc.
gredmon@hunsaker.com
0 Likes
211 Views
3 Replies
Replies (3)
Message 2 of 4

Anonymous
Not applicable
You can password protect your code in vba, better yet, if you have access to
full blown vb, you can re-work your code a little, then make an .exe for
your project.

Regards,
Jacob Dinardi

Gene Redmon wrote in message
news:3C4FCF6257CE9BBA08A2289BE772885A@in.WebX.SaUCah8kaAW...
What is the best way to protect VBA code in AutoCAD and Excel from
being copied or stolen?

Is it possible to encrypt VBA code and still have it function properly?

TIA

--
Gene Redmon
Corporate CADD Manager
Hunsaker and Associates Irvine, Inc.
gredmon@hunsaker.com
0 Likes
Message 3 of 4

Anonymous
Not applicable
Or you could create a DLL in VB and load it in VBA.

Joe

"Jacob Dinardi" wrote in message
news:4AA67656970909585D8ECF394167F759@in.WebX.SaUCah8kaAW...
> You can password protect your code in vba, better yet, if you have access
to
> full blown vb, you can re-work your code a little, then make an .exe for
> your project.
>
> Regards,
> Jacob Dinardi
>
> Gene Redmon wrote in message
> news:3C4FCF6257CE9BBA08A2289BE772885A@in.WebX.SaUCah8kaAW...
> What is the best way to protect VBA code in AutoCAD and Excel from
> being copied or stolen?
>
> Is it possible to encrypt VBA code and still have it function properly?
>
> TIA
>
> --
> Gene Redmon
> Corporate CADD Manager
> Hunsaker and Associates Irvine, Inc.
> gredmon@hunsaker.com
>
0 Likes
Message 4 of 4

Anonymous
Not applicable
While DLL's perform better under most circumstances (mainly due to them
running in-process) it leaves the end user holding the bag, since they need
a macro to run the dll from. Of course you can always make the macro
yourself and distribute it that way, I'm not sure what the legalities of it
are though if you are selling it. Assuming you want to protect your code for
distribution reasons that is.

Regards,
Jacob Dinardi

Gene Redmon wrote in message
news:3C4FCF6257CE9BBA08A2289BE772885A@in.WebX.SaUCah8kaAW...
What is the best way to protect VBA code in AutoCAD and Excel from
being copied or stolen?

Is it possible to encrypt VBA code and still have it function properly?

TIA

--
Gene Redmon
Corporate CADD Manager
Hunsaker and Associates Irvine, Inc.
gredmon@hunsaker.com
0 Likes