以下是我封撞在DLL中的一段代码
创建EXCEL
var
ExcelApp:Variant;
function ExcelName(ExcelName:string;SheetsCount:integer;SheetsName:string):Boolean;
var //创建对象和表单元
Posion,i:integer;
SheetN:array[1..50] of string;
begin
CoInitialize(nil);
try
ExcelApp:=CreateOleobject('Excel.Application');
if ExcelName<>'' then
ExcelApp.Caption:=ExcelName
else
ExcelApp.Caption:='Excel Report';
ExcelApp.WorkBooks.Add;
if sheetscount<> 0 then
for i:=1 to sheetscount do begin
ExcelApp.sheets.add;
end;
SheetsName:=SheetsName+':';
for i:=1 to 50 do
begin
posion:=Pos(':',SheetsName);
if Posion>0 then
begin
SheetN:=copy(SheetsName,1,Posion-1);
SheetsName:=copy(SheetsName,Posion+1,length(SheetsName));
end
else
break;
end;
SheetsCount:=SheetsCount+3;
if SheetsCount=0 then
begin
if SheetN[1]='' then
else
ExcelApp.Workbooks[1].Sheets[1].name:=SheetN[1];
if SheetN[2]='' then
else
ExcelApp.Workbooks[1].Sheets[2].name:=SheetN[2];
if SheetN[3]='' then
else
ExcelApp.Workbooks[1].Sheets[3].name:=SheetN[3];
end
else
begin
for i:=1 to SheetsCount do
begin
if SheetN='' then
break
else
ExcelApp.Workbooks[1].Sheets.name:=SheetN;
end;
end;
ExcelApp.Visible:=true;
result:=true;
except
result:=false;
end;
end;
如果你是动态创建EXCEL对象的话/
那么你现在就拥有对他的操作权/
你可以在创建完以后进行各类数据操作和表格样式的定制/
ExcelWorksheet1.PrintPreview; 这是打印预缆
ExcelWorksheet1.PrintOut; 这是打印输出
做excel表格管理器,最好的方式就是作成COM组件的方式,这样你就可以在外面挂接一个
操作面板来对你创建的EXCEL对象进行操作啦/非常方便的/