C
chenge
Unregistered / Unconfirmed
GUEST, unregistred user!
var ExcelApp: Variant;
begin
ExcelApp := CreateOleObject( 'Excel.Application' );
ExcelApp.Visible := True;
ExcelApp.WorkBooks.Open( 'C:/2003.xls' );
ExcelApp.WorkBooks[1].SaveAs( 'C:/2000.xls' );
end;
这段代码基本是可以的,唯一缺乏的是如何设定保存的格式?
请各位高手帮帮忙!
begin
ExcelApp := CreateOleObject( 'Excel.Application' );
ExcelApp.Visible := True;
ExcelApp.WorkBooks.Open( 'C:/2003.xls' );
ExcelApp.WorkBooks[1].SaveAs( 'C:/2000.xls' );
end;
这段代码基本是可以的,唯一缺乏的是如何设定保存的格式?
请各位高手帮帮忙!