码迷,mamicode.com
首页 > 其他好文 > 详细

技巧一:Delphi XE3 Excel导入数据到StringGrid

时间:2014-04-30 15:17:44      阅读:427      评论:0      收藏:0      [点我收藏+]

标签:c   t   string   ble   int   文件   cti   app   name   数据   file   

procedure TDataEditDrFrm.btn8Click(Sender: TObject);
var
excelx,excely:string;
ExcelApp:Variant;
workBook:OleVariant;
excelRowCount,excelColumnCount:longint;
i,j,row,row1:integer;

begin
row1:=1;
pb1.Min:=0;
dlgOpen1.Filter:=‘Excel文件|*.xls|*.xlsx‘;
if dlgOpen1.Execute then
begin
try
ExcelApp:=CreateOleObject(‘Excel.Application‘);
workBook:=ExcelApp.WorkBooks.open(dlgOpen1.FileName);
ExcelApp.visible:=False;
excelRowCount:=ExcelApp.ActiveSheet.UsedRange.Rows.count;
row:=1;
pb1.Max:=excelRowCount;

for i := 1 to excelRowCount do
begin
excelx:= excelapp.Cells[i,1].Value;
excely:=ExcelApp.cells[i,2].value;
if (excelx<>‘‘) and (excely<>‘‘) then
begin
if strngrd1.RowCount<i then
strngrd1.RowCount:=strngrd1.RowCount+1;
strngrd1.Cells[0,row]:=IntToStr(row);
strngrd1.Cells[1,row]:=excelx;
strngrd1.Cells[2,row]:=excely;
row:=row+1;
end;
pb1.StepBy(1);
end;
finally
workBook.Close;
ExcelApp.quit;
ExcelApp := Unassigned;
WorkBook := Unassigned;

end;

end;
end;

技巧一:Delphi XE3 Excel导入数据到StringGrid,布布扣,bubuko.com

技巧一:Delphi XE3 Excel导入数据到StringGrid

标签:c   t   string   ble   int   文件   cti   app   name   数据   file   

原文地址:http://www.cnblogs.com/xygzs/p/3699575.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!