ups, stimmt...
da hab ich jetz garnet dran gedacht...
dann mach es am besten so:
Delphi-Quellcode:
procedure TForm1.divisionClick(Sender: TObject);
var a, b, c: Real;
begin
a := strtofloat(zahla.text);
b := strtofloat(zahlb.text);
c := a / b;
ergebnis.text := floattostr(c);
end;
hoffe mal, das is jtz richtig, bei mir gehts zumindest xD