Hi torud,
du musst die Strings für True und False erweitern.
Das machst du wie folgt:
Delphi-Quellcode:
SetLength(TrueBoolStrs, Succ(Length(TrueBoolStrs)));
TrueBoolStrs[Pred(Length(TrueBoolStrs))] := 'Wahr';
SetLength(FalseBoolStrs, Succ(Length(FalseBoolStrs)));
FalseBoolStrs[Pred(Length(FalseBoolStrs))] := 'Falsch';
MfG
Stevie