通过访问TextBox的Value:如A帐和B帐的和除以2 为 50,放在TextBox1 中。
如需要在TextBox2中访问该值,则设置Value 属性为: =ReportItems!TextBox1.Value
如果需要在后台代码中访问该值, 可参考代码:
- GrapeCity.ActiveReports.PageReport rpt=new GrapeCity.ActiveReports.PageReport(new System.IO.FileInfo(@"RdlReport1.rdlx"));
- GrapeCity.ActiveReports.PageReportModel.TextBox txt = rpt.Report.Body.ReportItems[0] as GrapeCity.ActiveReports.PageReportModel.TextBox;
- string temp= txt.Value;
复制代码 |