You can try to copy the cell values ββas TAB delimited text , something like this code:
procedure TForm1.Button1Click(Sender: TObject); var S: string; X, Y: Integer; begin S := ''; for Y := StringGrid1.Selection.Top to StringGrid1.Selection.Bottom do begin for X := StringGrid1.Selection.Left to StringGrid1.Selection.Right - 1 do S := S + StringGrid1.Cells[X, Y] +
TLama source share