Ich hänge jetzt an einer Stelle an der Formel.... Ich habe sie schon verstanden...
und zwar...
was muss ich für jeden Edit machen?
das
Delphi-Quellcode:
begin
Sum := 0;
Count := 0;
if Edit2.Text <> '' then
begin
Sum := Sum + StrToFloat(Edit2.Text);
Inc(Count);
end;
oder das????
Delphi-Quellcode:
if Edit2.Text <> '' then
begin
Sum := Sum + StrToFloat(Edit2.Text);
Inc(Count);
end;