THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 01/03/2011 at 09:55, xxxxxxxx wrote:
This link shows you one way to build a serialization setup. The actual algorith can be anything. In the past I have used the last five digits of the person's serial number and then did some calculations to that number. For example:
get the last five digits of the serial and store them in a LONG let's say that is named "serial".
Then make any algorthim that uses serial and is true.
Like: serial + 99 /7 + 45 / 35 + 400 * 6;
This is of course a ridiculous example and is not what I would personally use but it shows that as long as you have the last five digits of the serial, you can make any algorthm out of it.
This is not the best, most secure serialization, but it is one example of how you could do it.
~Shawn