Und die Funktion kannst du auch ziemlich verkürzen:
Delphi-Quellcode:
type
TForm1 = class(TForm)
RadioGroup1: TRadioGroup;
private
procedure FNummerTimerstart(NR: Integer);
//..
end;
implementation
procedure TForm1.FNummerTimerstart(NR: Integer);
begin
case RadioGroup1.ItemIndex of
1: Inc(Nr, 10);
2: Inc(Nr, 20);
3: Inc(Nr, 30);
end;
{oder:
Inc(Nr, RadioGroup1.ItemIndex * 10);}
Timer[NR].Enabled := True;
end;