Einzelnen Beitrag anzeigen

Alterauge

Registriert seit: 4. Mär 2011
306 Beiträge
 
Delphi 2010 Professional
 
#3

AW: eine neue Zeile im StringGrid oben

  Alt 19. Dez 2013, 17:11
hallo baumina,

wieso ändert sich das Datum in allen Zeilen ?

Delphi-Quellcode:

procedure TForm1.Button1Click(Sender: TObject);
var
 i : integer;
begin
 i := StringGrid1.RowCount;
  Stringgrid1.RowCount := i+1;
  for i := 1 to StringGrid1.RowCount-1 do begin
  StringGrid1.Cells[0,StringGrid1.RowCount-i]:= IntToStr(i);
  StringGrid1.Cells[3,StringGrid1.RowCount-i]:= (FormatDateTime('hh:nn:ss',now));
 end;
end;

Was ist hier noch falsch?

Geändert von Alterauge (19. Dez 2013 um 20:57 Uhr)
  Mit Zitat antworten Zitat