Incorporating shareware restrictions in C++ software

前端 未结 5 1482
闹比i
闹比i 2021-02-14 01:29

I wish to implement my software on a shareware basis, so that the user is given a maximum trial period of (say) 30 days with which to try out the software. On purchase I intend

5条回答
  •  广开言路
    2021-02-14 02:04

    On the first start, you can store the actual date somewhere.
    Each following start, you look for the stored date, if it exist you read it an if it is more than 30 days after the first start, you stop the program.

提交回复
热议问题