Boolesche Operatoren und Klammern verwenden?
Das sollte aber in jedem billigen Delphi-Tutorial genannt sein.
Delphi-Quellcode:
if (Key=#13) or (Key=#01) then
if Key in [#13, #01] then
if CharInSet(Key, [#13, #01]) then // Korrekte Behandlung für UnicodeDelphis