程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> Delphi XE3 Excel導入數據到StringGrid

Delphi XE3 Excel導入數據到StringGrid

編輯:Delphi
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;

Author:cnblogs 嘯月☆天狼

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved