W
wwdelphi
Unregistered / Unconfirmed
GUEST, unregistred user!
我是做实验的,对Delphi很不专业。
在采集数据的过程中,希望能够采集到Excel表格中的“最新”数据。
编写了以下程序:
procedure TForm1.bsSkinButton34Click(Sender: TObject);//读取Excel中最新的数
Var
i:integer;
begin
for i:=1 to 35001 do
if ExcelID.Cells[i,1].Value='' then
bsskinstringgrid2.Cells[1,1]:=ExcelID.Cells[i-1,i].Value;
end;
但是,程序返回错误,说string和double的问题,小弟不明,望高手指教。谢谢!
在采集数据的过程中,希望能够采集到Excel表格中的“最新”数据。
编写了以下程序:
procedure TForm1.bsSkinButton34Click(Sender: TObject);//读取Excel中最新的数
Var
i:integer;
begin
for i:=1 to 35001 do
if ExcelID.Cells[i,1].Value='' then
bsskinstringgrid2.Cells[1,1]:=ExcelID.Cells[i-1,i].Value;
end;
但是,程序返回错误,说string和double的问题,小弟不明,望高手指教。谢谢!