Ok, mein Code schaut jetzt so aus:
Code:
procedure TErgebnisse.FormActivate(Sender: TObject);
begin
if n < 4 then
Schlecht.Visible := True;
if (n > 3) and (n < 7) then
Ok.Visible := True;
if (n > 6) and (n < 10) then
Gut.Visible := True;
if n = 10 then
Perfekt.visible := True;
end;
Wenn ich 6/10 richtig hab, zeigt es mir jedoch statt Ok Schlecht an, wenn ich 10/10 richtig hab wird mir das Bild von Gut angezeigt.. ?