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 
4

1 に答える 1

0

ReportDocument クラスの定義を見ると、そうです: http://msdn.microsoft.com/en-us/library/aa664718(v=vs.71).aspx

ただし、これまでテストしたことがなく、単位がピクセルではなく twip であることに注意してください :)

于 2013-02-19T09:35:47.490 に答える