Delphi Word自动化-打印合并文档

发布于 2024-12-07 12:19:00 字数 749 浏览 1 评论 0原文

我的 D5 应用程序当前可以使用以下方式将多个成员数据邮寄到 Word 文档:

wrdapp := CreateOleObjct(word.application);
wrdDoc := wrdApp.Document.Open(TemplateLocation);
wrdMailMerge := wrdDoc.MailMerge;
populateMailMergeDateFile;
wrdMailMerge.execute;

然后

wrdDoc.Saved := False;
wrdDoc.Close(False);
wrdApp.Visible := True;

我想提供将合并的文档直接传递到打印机的选项。但是我找不到允许这种情况发生的代码

wrdDoc.PrintOut;
wrdDoc.Saved := False;
wrdDoc.Close(False);

打印出没有合并数据的模板文档。

wrdDoc.Saved := False;
wrdDoc.Close(False);
wrdDoc.PrintOut;

显示变体对象错误。

wrdMailMerge.PrintOut;

显示自动化错误。

我也尝试过使用 True 而不是 False。有人可以建议我如何正确打印合并的文档吗?

非常感谢

My D5 application can currently mail merge multiple members data to a Word document using:

wrdapp := CreateOleObjct(word.application);
wrdDoc := wrdApp.Document.Open(TemplateLocation);
wrdMailMerge := wrdDoc.MailMerge;
populateMailMergeDateFile;
wrdMailMerge.execute;

and then

wrdDoc.Saved := False;
wrdDoc.Close(False);
wrdApp.Visible := True;

I would like to offer the option of passing the merged document straight to the printer. However I cannot find the code which allows this to happen

wrdDoc.PrintOut;
wrdDoc.Saved := False;
wrdDoc.Close(False);

Prints out the template document with no merged data.

wrdDoc.Saved := False;
wrdDoc.Close(False);
wrdDoc.PrintOut;

Displays a variant object error.

wrdMailMerge.PrintOut;

Displays an automation errors.

I've tried using True instead of False as well. Can anybody advise me as to how to print the merged document correctly?

many thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流殇 2024-12-14 12:19:00

在我的邮件合并代码中,我在执行合并之前将 MailMerge.Destination 设置为 wdSendToNewDocument,然后调用 WordApplication.ActiveDocument.Printout。

In my mailmerge code, I set MailMerge.Destination to wdSendToNewDocument before executing the merge, then afterwards I call WordApplication.ActiveDocument.Printout.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文