Hallo,
es kommt auch auf die Bedingung an. Bei ordinalen genügt auch:
Delphi-Quellcode:
case Bedingung of
1..5: //irgendwas
6: Result := True;
else //irgenwas anderes
end;
Ansonsten vielleicht so:
Delphi-Quellcode:
if Bedingung1 then else
if Bedingung2 then else
...
if Bedingung7 then else b := True;
Gruß
s14