Das ging jetzt, aber ich hab ein neues Problem
und zwar:
Delphi-Quellcode:
if (Edit7.Text > '0') and (Edit7.Text <= '0900,42') then Label9.Caption := '<= 900,42';
if (Edit7.Text > '0900,42') and (Edit7.Text <= '2099,33') then Label9.Caption := '<= 2099,33';
if (Edit7.Text > '2099,33') and (Edit7.Text <= '4266,00') then Label9.Caption := '<= 4266,00';
if (Edit7.Text > '4266,00') then Label9.Caption := 'größer';
Ich kann z.B. keine 4 eingeben und bekomme <= 900,42 heraus.