Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.184 Beiträge
Delphi 12 Athens
|
AW: RadioButtons und CheckBoxen
15. Nov 2010, 15:19
Delphi-Quellcode:
case MeineRadioGroup.ItemIndex of
0: b := a + 1;
1: b := a + 2;
//usw. usf.
end;
In diesem Fall sogar noch einfacher.
Delphi-Quellcode:
a := StrToFloat(Edit1.Text);
b := a + MeineRadioGroup.ItemIndex + 1;
Edit2.Text := FloatToStr(b);
// aka
Edit2.Text := FloatToStr(StrToFloat(Edit1.Text) + MeineRadioGroup.ItemIndex + 1);
$2B or not $2B
Geändert von himitsu (15. Nov 2010 um 15:21 Uhr)
|