Das ist Murks
Delphi-Quellcode:
Ergebnis := strtofloat (LblErgebnis.caption);
LblErgebnis.caption := FloatToStr(Ergebnis)
Du weist "Ergebnis" den Wert des Labels zu und anschließend umgekehrt.
Ich vermute, du möchtest das hier:
Delphi-Quellcode:
// ...
ausgabe := Zahl1 + Zahl2/60 + Zahl3/3600;
LblErgebnis.Caption := FloatToStr(ausgabe);
Grüße, Matze