|
Question:
I want when the user download the program and run it, Nothing show to him, and the program works like full version..
But after 25 day, the program should warn the user you have 5 days left on the trail.
Answer:
To do it you must:
From the avmanager utility (Settings tabsheet): enter your desired values for appid and encryptionkey, in this case encryptionkey = '' and appid = 12345671. Enter 5 into the "Days left to warning" field. Uncheck the "The user name is requested at first time" checkbox.
Into the OnCreate Event manager enter the following code:
procedure TForm1.FormCreate(Sender: TObject);
begin
AVLockG51.read;
if (AVLockG51.FirstTime = 3) then with AVLockG51 do
begin
//This will register the main module (module 0) by 30 days for 2 users
registerkey(0,GenRegularKey(1,12345671,InstallCode,30,2,date,0),'Unregistered','',False);
//If you have extra modules then register them too
//This will register the module 1 by 30 days (there moduleid=11)
//registerkey(1,GenRegularKey(1,11,InstallCode,30,2,date,1),'Unregistered','',False);
end else AVLockG51.execute;
end;
Compile it then unregister it from the avmanager and try again.
Question:
If a user reformats his hard drive, will the InstallCode and the serial number be the same as before?
Answer:
If the user reformats the HD and "HD serial number" is checked into the avmanager utility then the InstallCode will be changed because it is calculated with the GetVolumeId function, so the user will need a new registration key.
Question:
If I buy the standard edition (without sources), I still will see into my application the AVLock logo?
Answer:
No, the logo will disappear.
Question:
If I purchase the limited edition, how much is the cost to upgrade to the standard edition?
Answer:
You pay the difference plus a overcharge of $5.
For example:
Standard edition. . . . . $74.95
Limited edition . . . . . $39.95
--------------------------------
Difference. . . . . . . . $35.00
Overcharge. . . . . . . . $ 5.00
--------------------------------
Upgrade cost. . . . . . . $40.00
Question:
Can I install two or more applications into the same folder, since the avmanager generates only one avconfig.ini file by each application?
Answer:
Yes, there can be more than one application managed by AVLockGold.into the same folder but all they will kept linked to the same avconfig.ini file and therefore all they will have the same AppID and encryptionkey. If one is registered then every other will kept registered too.
Question:
Shoud be the applications always installed into the same folder where they has been configured by the avmanager utility?
Frecuently the applications are developed into a folder and then the customer install it into his preferred folder.
Answer:
No, there is not necessary to install the application in the same folder where they has been developed. When the user installs the application he can chose his preferred folder.
|