MS Access 2003 - 打开报告而不打印

发布于 2024-08-17 11:33:32 字数 110 浏览 4 评论 0原文

我从另一种形式使用

Docmd.OpenReport "Report1"

,它似乎只是想打印报告而不实际显示它。我想显示报告,而不是打印它

I used

Docmd.OpenReport "Report1"

from another form and it seems to just want to print the report without actually displaying it. I want to display the report, not print it

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

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

发布评论

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

评论(1

流绪微梦 2024-08-24 11:33:32

将 acView 参数设置为 acViewPreview:

docmd.OpenReport "Report1", acViewPreview

Access Help 表示您可以使用以下 AcView 常量之一:

acViewDesign 
acViewNormal 
acViewPreview  

acViewNormal 是默认值并立即打印报告。

Set the acView argument to acViewPreview:

docmd.OpenReport "Report1", acViewPreview

Access Help says you can use one of these AcView constants:

acViewDesign 
acViewNormal 
acViewPreview  

acViewNormal is the default and prints the report immediately.

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