| Author |
Serial no generation
|
|
|
| Does anybody n+know where to find informaion how to generate and include serial numbers in inno setup anmd dbase code?
Thanks for helping.
Al
| |
| Jonny Kwekkeboom 2005-07-04, 3:23 am |
| Hi,
for including a Serial this must be added to your scripting
[Setup]
UserInfoPage=True
UsePreviousUserInfo=
True
--
UserInfoPage=True << must be true for see the input on this page for a
serial key !
[Code]
;needed function for check the user entry with it
; Serial key here now: >> My-Serial-Key-Here <<
function CheckSerial(Serial: String): Boolean;
begin
Result:=(Serial='My-Serial-Key-Here');
end;
cu
Jonny
| |
| Jonny Kwekkeboom 2005-07-04, 3:23 am |
| [Code]
;needed function for check the user entry with it
; Serial key here now: >> My-Serial-Key-Here <<
--
Must be
[Code]
// needed function for check the user entry with it
// Serial key here now: >> My-Serial-Key-Here <<
remark lines inside a code section ;)
cu
Jonny
|
|
|
|