Hallo,
die Formatierung,
oh Gott
ich mache immer
Delphi-Quellcode:
if XXX then
begin
if YYY then
begin
end;
end
else
begin
end;
aber nun ja
Delphi-Quellcode:
if (StrToInt(Notentabelle.Cells[j,i]) >= 0) and
(StrToInt(Notentabelle.Cells[j,i]) <= 4)
das kann nicht passen, >=0 UND <=4
das geht so nicht, du meinst wohl ODER ? (or)
Heiko