hallo,
möchte immer die aktuellen Zeilen oben haben!
wie löse ich dieses Problem?
Delphi-Quellcode:
var
i: Integer;
begin
i := StringGrid1.RowCount;
StringGrid1.RowCount := i +1;
StringGrid1.Cells[1, i] := IntToStr(zaehler);
inc(zaehler);
StringGrid1.Cells [2, i] := FormatDateTime ('dd:mm:yyyy', Now);
StringGrid1.Cells [3, i] := FormatDateTime ('hh:nn:ss', Now);
StringGrid1.Cells [4, i] := ('Log * '+ Edit6.Text +' * User ID * '+ Edit3.Text);
end;