我找不到從字符串網格複製選定單元格數據的方式,如果可能的話,我希望將所選數據字符串複製到編輯框中..很多預先感謝。 即時通訊使用delphi xe8,firemonkey。如何從字符串網格中複製選定的數據
我試過到目前爲止..
Private
A : Array of TValue;
procedure TForm1.Grid1GetValue(Sender: TObject; const Col, Row: Integer; var Value: TValue);
begin
// Gets the value from a cell in the first column
if Col = 0 then
Value := A[Row];
procedure TForm1.Button2Click(Sender: TObject);
begin
A[1] := Edit1.Text;
end;
你能告訴我們你已經嘗試了什麼?當然,你需要做的只是從網格中讀取文本,並將文本寫入編輯。你堅持使用哪一部分? –
我什麼都做不了,所有的代碼都和VCL!有關,我堅持使用代碼和複製過程@David Heffernan – markkk
首先,你知道你是如何設置編輯控件的文本嗎?你看過文檔嗎? –