0
Dim mainRp As New MainReport 
Dim subRp As New SubReportTest 

subRp.Section3.Height = 500 

CrystalReportViewer1.ReportSource = mainRp 

上面的代碼不工作,不顯示任何錯誤也我可以控制子報表的細節部分的高度在晶體報告

但沒有像

mainRp.Subreports("SubReportTest.rpt").Section3.Height = 500 
mainRp.Subreports("SubReportTest.rpt").????? 'for set the height of subreport 

回答