securing my software

S

Sensay

i want to secure my software by retrieving the hardware information of the
computer where my software is installed and insert these info into my
software, so that the client won't be able to copy the software to another
computer and have it working without my permission,
can that be done ? and how ?

thanks in advance
Sensay
 
D

David Moore

I wrote some VB code that takes the day, month, year, hour, minute and second
and puts them into a different order. Then I write that value to the
Registry. I then also add a property to the database and make the value be
the scrambled code. The code checks the two values when it starts running.
If they are different the program stops.

Hope that helps,
David Moore
 
J

J Holtendehouzer

How do you write to the registry?

David Moore said:
I wrote some VB code that takes the day, month, year, hour, minute and
second
and puts them into a different order. Then I write that value to the
Registry. I then also add a property to the database and make the value
be
the scrambled code. The code checks the two values when it starts
running.
If they are different the program stops.

Hope that helps,
David Moore
 
Top