View Single Post
  #889  
Old 21-01-2014, 05:04
altef_4's Avatar
altef_4 altef_4 is offline
Registered User
 
Join Date: Mar 2012
Location: Ukraine
Posts: 361
Thanks: 248
Thanked 1,022 Times in 239 Posts
altef_4 is on a distinguished road
Quote:
Originally Posted by y_thelastknight View Post
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;
Reply With Quote
The Following 2 Users Say Thank You to altef_4 For This Useful Post:
papas (02-09-2016), y_thelastknight (21-01-2014)