Hi Folks,
Do you have any ideas of implementing a 'record count' limit for a trial version of a software?
- Assume it's a task management program;
- Trial version and full version are separate downloads;
- in the trial version I want to limit the max. amount of tasks allowed to be created by the users.
My question is, show to apply this 'task count limit' into the core program logic, so that it can't be bypassed easily? For example, obviously the following code can be bypassed easily:
if (varTotalTaskCount > 20)
{
ShowMessage("This is a trial version and you can create up to 20 tasks only");
return false;
}
Any ideas? Thanks!