如何强制报表查看器以打印预览模式显示

发布于 2024-07-14 05:35:30 字数 65 浏览 7 评论 0原文

在 Visual Studio 2005 中,如何在打印预览模式下直接在 ReportViewer 控件中显示报表?

In Visual Studio 2005, how can I show a report in ReportViewer control directly on Print-preview mode?

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

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

发布评论

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

评论(2

神也荒唐 2024-07-21 05:35:30

使用 SetDisplayMode() 方法:

MyReportViewer.SetDisplayMode(DisplayMode.PrintLayout);

Use the SetDisplayMode() method:

MyReportViewer.SetDisplayMode(DisplayMode.PrintLayout);
陌上青苔 2024-07-21 05:35:30

在 Windows 窗体应用程序中,如果您在报表查看器的 RenderingComplete 事件中调用 SetDisplayMode 方法,则可能会导致 StackOverflowException。 调用该方法的位置不正确。

In Windows Forms application if you call the SetDisplayMode method in reportviewer's RenderingComplete event it may cause StackOverflowException. It is not correct place to call the method.

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