调用excel打印(0分)

  • 主题发起人 主题发起人 hongfeng0727
  • 开始时间 开始时间
H

hongfeng0727

Unregistered / Unconfirmed
GUEST, unregistred user!
高手能否指点一下 用excel来打印 DGBrid 中数据
 
用DGBrideh
 
用CreateOLEobj函数,打开EXCEL服务.
具体细节你可单说EXCEL的VBA帮助
 
uses
 ComObj;
-------
var ExcelApp: Variant;
begin
 
 ExcelApp := CreateOleObject( 'Excel.Application' );
ExcelApp.Visible := True;
ExcelApp.Caption := '应用程序调用 Microsoft Excel';
ExcelApp.WorkBooks.Add;
ExcelApp.WorkSheets[1].Activate;
excelapp.cells[1,1].value:='名称';
excelapp.cells[1,2].value:='月份';
excelapp.cells[1,3].value:='数量';
....
end;
 
后退
顶部