CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6

Thread: Licensing

  1. #1
    Join Date
    May 1999
    Location
    USA
    Posts
    23

    Licensing

    Hi,
    I want to distribute an application developed by me but would like to allow users to download the demo version, which should expire after 30 days. The problem is how to check if the 30 day period is over ? I can check for the system date but then the user can change the system date and run my application even after the licensing period is over. Can I restrict this in any other way ???


  2. #2
    Join Date
    May 1999
    Location
    Oxford UK
    Posts
    1,459

    Re: Licensing

    Take a look at the ActiveLock control from

    http://www.insite.com.br/activelock/

    It's free and will allow you to create time-limited demos (it even recognises when the user changes their date to try and fool it).

    Whats more, it's free !

    Chris Eastwood

    CodeGuru - the website for developers
    http://www.codeguru.com/vb

  3. #3
    Join Date
    May 1999
    Location
    USA
    Posts
    23

    Re: Licensing

    That was cool !!! But I've a doubt. This ActiveLock must be storing the information like LastRunDate, DaysUsed at some place in the system only, most probable place beign the system registry. What if the user changes them ??? How do I know that the system has generated proper locks ??? Basically, where is this information stored ???


  4. #4
    Join Date
    May 1999
    Location
    Oxford UK
    Posts
    1,459

    Re: Licensing

    From what I can find, the information is encrypted into the registry (you could probably find it using one of the registry monitoring programs available, but whether you could un-encrypt it....) - the only problem I've found is that a user may buy your app, then need to reinstall windows for some reason. This then means that their registration code will no-longer work. You'd have to mail the developers at activelock for more specific information (they're a nice bunch of people, very helpful).



    Chris Eastwood

    CodeGuru - the website for developers
    http://www.codeguru.com/vb

  5. #5
    Join Date
    May 1999
    Location
    USA
    Posts
    23

    Re: Licensing

    thanx a lot, I'm really sorry 2 ask this but i do not have the activelock guys e-mail, neither could i find anything on their website. can u just send me the e-mail id ??? Thanx again....


  6. #6
    Join Date
    May 1999
    Location
    Oxford UK
    Posts
    1,459

    Re: Licensing

    You can ask for feedback from the team at :

    http://www.insite.com.br/activelock/question.html



    Chris Eastwood

    CodeGuru - the website for developers
    http://www.codeguru.com/vb

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured