Trial version software

  • Thread starter Thread starter Billy Masopust
  • Start date Start date
B

Billy Masopust

I am trying to develop a beta version of some software in
Visual C#. The software needs to expire and basically
self-destruct in 15 days. How do I get the program to do
this? The program needs to check the system date every
time the application is ran to see if it has expired. I
also need help with programming registration keys in this
software, much like the ones needed to install Windows and
Office. Thanks!
 
You can buy solutions for this type of thing - if you would rather roll your
own, then you could provide a Md5 registration mechanism on your site that
gives a key generated from the start date, and some other values mimicked in
your code, and then use that Md5 to work out if present date is within the
15 day limit when your code runs.

Regards

John Timney (ASP.NET MVP)
 

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