Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.184 Beiträge
Delphi 12 Athens
|
AW: Case AnsiIndexText -> Ergebnis verändern
14. Nov 2013, 10:20
Oder vor dem CASE prüfen und da noch den Index ändern.
Delphi-Quellcode:
I := AnsiIndexText(Wert, ['A', 'B','C']);
if (I = 0) and (Z = 1) then I := 1;
case I of
0: begin
...
Delphi-Quellcode:
if IfThen((UpperCase(Wert) = 'A') and (Z = 1), 1, AnsiIndexText(Wert, ['A', 'B','C'])) of
case I of
0: begin
...
$2B or not $2B
|
|
Zitat
|