在Crystal Reports中设置子报表文本对象

本文关键字:报表 文本 对象 设置 Crystal Reports | 更新日期: 2023-09-27 17:59:23

我想通过资源文件设置子报表标题文本。这是我在下面尝试的代码

  ReportDocument rDocument = (ReportDocument)Session["ReportSource"];
 ((TextObject)rDocument.Subreports["HolidaySubReport"].ReportDefinition.
 ReportObjects["HolidaySchedule"]).Text=Resources.Resources.HolidaySchedule;

但这里我得到了错误作为object reference not set to instance of object

我该如何解决这个问题。如有任何帮助,我们将不胜感激。

在Crystal Reports中设置子报表文本对象

TextObject txtpentotal = (TextObject)objRpt.Subreports["Subreport.rpt"].ReportDefinition.Sections["Section4"].ReportObjects["txttotal"];
txtpentotal.Text = pen.Text;