Registriert seit: 10. Jun 2002
Ort: Jena
1.128 Beiträge
Delphi 10.4 Sydney
|
Re: Welcher Radiobutton?
11. Aug 2003, 15:53
Danke an alle!
Meine Lösung:
Delphi-Quellcode:
var
multi,kst: Integer;
xxlabel: TLabel;
begin
with (Sender as TRadioGroup) do
begin
multi:=RadioGroup1.ItemIndex;
end;
kst:=multi+1;
xxlabel:=FindComponent('Label'+IntToStr(kst)) as TLabel;
Form7.ksttext.Caption:=xxlabel.Caption;
Form7.kstst.Text:=RadioGroup1.Items.Strings[multi];
close;
end;
Nochmals Danke
Peter +++Versuch es nicht mit Gewalt + Nimm einen größeren Hammer! +++
|