Quote:
Originally Posted by y_thelastknight
thanks. used like this
Code:
function shouldskippage(pageid: integer):boolean;
begin
If RadioButton1.Checked=true then
case pageid of
wpSelectDir,wpSelectProgramGroup,wpReady: //add or remove skiped pages
result:=true;
else
result:=false;
end;
end;
|
little edit
Code:
function shouldskippage(pageid: integer):boolean;
begin
If RadioButton1.Checked then
case pageid of
wpSelectDir,wpSelectProgramGroup,wpReady: result:=true;
else
result:=false;
else result:=false;
end;