墙
墙头草
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TForm1.Button1Click(Sender: TObject);
var
ExcelApp: Variant;
begin
ExcelApp := CreateOleObject('Excel.Application');
//ExcelApp.Visible := True;
ExcelApp.WorkBooks.Add;
ExcelApp.Cells[1,4].Value := '第一行第四列';
ExcelApp.SaveAs('D:/Demo1.xls');//在这里出错
ExcelApp.Quit;
end;
对excel不是太熟,我想把他存为我指定的目录和名字为什麽出错。帮我看看
var
ExcelApp: Variant;
begin
ExcelApp := CreateOleObject('Excel.Application');
//ExcelApp.Visible := True;
ExcelApp.WorkBooks.Add;
ExcelApp.Cells[1,4].Value := '第一行第四列';
ExcelApp.SaveAs('D:/Demo1.xls');//在这里出错
ExcelApp.Quit;
end;
对excel不是太熟,我想把他存为我指定的目录和名字为什麽出错。帮我看看