Mega Code Archive

 
Categories / Delphi / VCL
 

Disable RadioGroup item

Title: Disable RadioGroup item All, what you need to do, is to use Controls property of RadioGroup component. procedure TForm1.Button1Click(Sender: TObject); begin TRadioButton(RadioGroup1.Controls[1]).Enabled:=False; end;