彩票走势图

【Stimulsoft Reports.WinForms教程】Detalization实时报表

翻译|使用教程|编辑:王香|2018-09-10 13:52:31.000|阅读 312 次

概述:本文主要讲解Stimulsoft的Detalization实时报表。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

【下载Stimulsoft Reports.Ultimate最新版本】

此示例项目显示如何在单独的预览窗口中进行报表分离。该报告可能包含外部报表中的详细数据。例如,主要和详细报表显示在单独的预览窗口中。加载主报表,为click事件添加事件侦听器,并在查看器中显示此报表:

private void button2_Click(object sender, System.EventArgs e)
{
    StiReport report = new StiReport();
    report.RegData(dataSet1);
    report.Load("..\\LiveReports.mrt");
    report.Compile();
    report.CompiledReport.Click += new EventHandler(click);
    report.Show();
}

在click事件中,您可以使用主报表中的参数加载包含数据过滤的详细报表:

private void click(object sender, EventArgs e)
{
    StiComponent comp = sender as StiComponent;
    string customerID = (string)comp.BookmarkValue;
 
    if (customerID != null)
    {
        StiReport report = new StiReport();
        report.RegData(dataSet1);
        report.Load("..\\Details.mrt");
        StiDataBand dataBand = (StiDataBand)report.Pages["Page1"].Components["DataBand1"];
        StiFilter filter = new StiFilter("{Orders.CustomerID==\"" + customerID + "\"}");
        dataBand.Filters.Add(filter);
        report.Show();
    }
}

示例代码的结果如下图所示:

Stimulsoft

购买Stimulsoft正版授权,请点击“”哟!

Stimulsoft


标签:报表报表控件报表设计StimulsoftWinForms

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP