VCL Delphi

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;