T
TAO_0909
Unregistered / Unconfirmed
GUEST, unregistred user!
在Excel中按 文件/发送/邮件收件人 可以把内容发送到指邮箱,我想在程序中自动
实现这一功能,我的代码是:
procedure TForm1.Button1Click(Sender: TObject);
var ExcelIDleVariant;
begin
ExcelID := CreateOleObject('Excel.Application');
ExcelID.WorkBooks.Open('C:/tt.xls');
ExcelID.ActiveWorkBook.SendMail('tt@163.com');
end;
但运行时出现以下错误:
类WookBook的SendMail方法无效
请问如何解决?
实现这一功能,我的代码是:
procedure TForm1.Button1Click(Sender: TObject);
var ExcelIDleVariant;
begin
ExcelID := CreateOleObject('Excel.Application');
ExcelID.WorkBooks.Open('C:/tt.xls');
ExcelID.ActiveWorkBook.SendMail('tt@163.com');
end;
但运行时出现以下错误:
类WookBook的SendMail方法无效
请问如何解决?