如何从stringgrid复制选定的数据

时间:2015-08-22 17:03:14

标签: delphi firemonkey delphi-xe8 stringgrid

我无法找到从stringgrid复制所选单元格数据的方法,如果可能的话,我希望将所选数据字符串复制到“编辑”框中。非常感谢提前。 即时通讯使用delphi xe8,firemonkey。

到目前为止我尝试了什么..

1

1 个答案:

答案 0 :(得分:1)

//i spent hours just to figure it out,waste of TIME;//

Procedure Formx.StringGrid1SellectCell(Sender: TObject; const ACol,Arow: integer;   var CanSellect: Boolean);
Var
Val: string;
begin
Val := StringGrid1.Cells[ACol, ARow];
Edit1.Text:= Val;