我已经在Pascal中创建了一个记录类型TTableData,用于存储来自TStringGrid的信息供以后使用:
TTableData = record
header: String[25]; //the header of the column (row 0)
value : String[25]; //the string value of the data
number: Integer; //the y-pos of the data in the table
end;
但是每当我尝试通过遍历TStringGrid并从单元格获取值来初始化这些对象时,这些值就变成('','',0)(除了少数以某种方式被证明是正确的单元格之外)。
这是我从TStringGrid读取数据的过程:
procedure TfrmImportData.butDoneClick(Sender: TObject);
begin
Halt;
end;
{ initialize records which are responsible
for storing all information in the table itself }
procedure TfrmImportData.initTableDataObjects();
var
i, j: Integer;
begin
SetLength(tableData, StringGrid1.ColCount, StringGrid1.RowCount);
for j:= 0 to StringGrid1.RowCount-1 do begin
for i:= 0 to StringGrid1.ColCount-1 do begin
with tableData[i,j] do begin
header := StringGrid1.Cells[i,0];
value := StringGrid1.Cells[i,j];
number := i;
end;
end;
end;
for i:= 0 to StringGrid1.RowCount - 1 do begin
for j:=0 to StringGrid1.ColCount - 1 do begin
ShowMessage(tableData[i,j].header+': '+tableData[i,j].value);
end;
end;
end;
我不太确定这里发生了什么。当我使用断点并缓慢地遍历代码时,可以看到最初已正确读取数据(通过将鼠标悬停在第二个for循环的tableData [i,j]上以查看其当前值),但是当我尝试在循环本身中ShowMessage(...)的值显示错误。
提前致谢,
最佳答案
分配时,您正在寻址单元格[Col,Row],这是正确的。在控制循环(ShowMessage
)中,您已切换到寻址[行,列],这是不正确的。
关于delphi - 在记录中使用来自TStringGrid的数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5860726/