Quote:
Originally Posted by y_thelastknight
how to create a quick install button for normal installer.
|
try this
function shouldskippage(pageid: integer):boolean;
begin
case pageid of
wplicense,wppassword: //add or remove skiped pages
result:=true;
else result:=false;
end;
end;