Security/Protection

  • Thread starter Thread starter phil
  • Start date Start date
P

phil

I am currently developing an Excel solution. I need to lock the excel
workbook so it can:-

1. Require a serial number to activate the workbook
2. lcoked the user/PC
3. Encrypted
4. Backwards and forward compat. with other version of Excel
5. option to provide a time framed trial version of the solution

Any ideas

Thanks
 
I am currently developing an Excel solution.  I need to lock the excel
workbook so it can:-

You can encrypt everything with external library or hardware key
(dongle).
But, experienced user can always gain access to VBA code and worksheet
content. These two parts can't be effectively protected.
 
Take a look at this:
http://exceltip.com/exceltips.php?view=category&ID=20

Good info. there. Now, having dealt with this quite a bit in the part, I'd
say try to avoid it at all costs. Excel security is pretty weak; you can
prevent the casual user from pretty much anything, but you won't protect your
app. from an experienced user!! I have some code that will disable an app.
if it is removed from a network environment; I think I got the code from Jim
Thomlinson. This will add a level of security to your project, but again,
any advanced user can figure it out and disable it pretty darn quick. It
sounds like you developed an app. and now you are trying to sell it to end
users. If that's the case, the JT code won't help...

For time bomb info. look here:
http://www.cpearson.com/excel/WorkbookTimeBomb.aspx


Hope that helps a bit.

Regards,
Ryan--
 

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

Back
Top