通过使用数据集来使用 Crystal Report For Windows 应用程序

发布于 2024-11-03 12:10:43 字数 118 浏览 1 评论 0原文

我在 Windows 应用程序中使用 Crystal Report,在此我创建了一个数据集来从数据库中获取数据,但我不知道如何在数据集中传递参数...... 任何人都可以告诉我如何将参数传递给数据集以便在水晶报表中使用它。

I,m Using Crystal Report in Windows Application and In this I Created a Data Set to fetch Data from the Database but I Don't Know How to Pass parameter in Data Set....
Any One can Tell me that How to Pass Parameter to Data Set for Using it in Crystal Report.

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

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

发布评论

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

评论(1

洒一地阳光 2024-11-10 12:10:44

关键是将数据填写到子报告中。

foreach (ReportDocument subDoc in Report.Subreports)
{
     subDoc.SetDataSource(ReportDataSet);
}

The key is to fill in the data into the sub-reports.

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