我根据条件向正文的主报告结尾动态添加了新的子报告,我的代码是
int left=10;
int top=20;
int width=50;
int height=50;
report.ReportClientDocument.SubreportController.ImportSubreportEx("Test", @"C:\test-sub.rpt", report.ReportClientDocument.ReportDefController.ReportDefinition.PageFooterArea.Sections[0], left, top, width, height);
添加子报告工作正常,但它显示页脚左侧小图像,我可以尝试增加上述值(高度,宽度)而不显示小图像,当我单击另一个窗口中显示的图像子报告时,但是我必须显示正文的完整子报告结尾请任何人帮助我....