捕获打印日期并隐藏报告

发布于 2024-10-19 04:45:16 字数 411 浏览 1 评论 0原文

我正在显示一个水晶报告,显示特定用户的记录。

要求就像 1. 如果该报告的打印件被取出,则该用户在 1 个月(准确地说是 30 天)内不可见。因此,如果我在 2011 年 1 月 1 日为用户 John Smith 打印报告,那么 John Smith 的记录应该在 2011 年 1 月 30 日之前不会出现,在 1 月 31 日,该记录应该再次出现在报告中。

我正在使用

  1. Visual Studio 2005 (C#)
  2. Crystal Report(用于查看报表的 Crystal Report 查看器)

我的查询:

  1. 如何捕获打印日期?
  2. 我应该如何继续满足我的要求?

请指导我,尤其是逻辑部门:-)

I am displaying a crystal report that displays record for particular user.

Requirement is like
1. If Print of that report is taken out, then that user should not be visible that for 1 month (30 days to be precise). Hence if i print the report on Jan 1 2011 for user John Smith, that record for John Smith should not appear till Jan 30 2011, On Jan 31, that record should again come up in report.

I'm using

  1. Visual Studio 2005 (C#)
  2. Crystal Report (Crystal Report viewer to view reports)

My Query:

  1. How to capture print date?
  2. How should i proceed to fulfill my requirement?

Please guide me esp in the Logic department :-)

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

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

发布评论

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

评论(1

阿楠 2024-10-26 04:45:16

如果您要在用户从 CrystalReportViewer 打印报告时进行操作,您可以尝试将上次打印的日期字段添加到数据源,然后通过覆盖 打印报告时触发更新>CrystalReportViewer 类例如::

class MyViewer : CrystalReportViewer
{
    public override void PrintReport()
    {
        base.PrintReport();
        /* Update your datasource to set last printed date = now */
    }
}

If you're going by when the user prints the report from the CrystalReportViewer you could try adding a last printed date field to your data source, then trigger an update when the report gets printed by overriding the CrystalReportViewer class eg::

class MyViewer : CrystalReportViewer
{
    public override void PrintReport()
    {
        base.PrintReport();
        /* Update your datasource to set last printed date = now */
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文