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...