Einzelnen Beitrag anzeigen

horst

Registriert seit: 1. Jul 2003
347 Beiträge
 
Delphi 2007 Professional
 
#1

StringGrid1Click & aktuelle zeile

  Alt 27. Okt 2003, 00:34
versuche die aktuelle zeile eines stringgrids in ein edit zu bekommen
Delphi-Quellcode:
procedure TForm1.StringGrid1Click(Sender: TObject);
var c, min, i, j: Integer;
  s: string;
begin
  for i := 0 to stringgrid1.Rowcount - 1 do begin
  for j := 0 to stringgrid1.Colcount - 1 do begin
   s := StringGrid1.Cells.[i, j];
      edit2.text := s;
    end;
  end;
end;
da stimmt aber was nicht...
  Mit Zitat antworten Zitat