我做了一个子报告到其他2个水晶报告的标题。 其中一个主要报告填写得很好,但第二个仍然是空的。 我以同样的方式填充子。
rowTest("field1") = "123" ' rowTest = dtTest.NewRow
dtTest.Rows.Add(rowTest)
ds.Tables.Add(dtTest) ' this is the dataset
主要报告:
crTest.SetDataSource(ds) ' in debug I see ds contains all fields
子报表:
ds.Tables.Clear() ' clear all the dataSet
Dim dtTest As New ds.dtTestDataTable ' instanse of data table
Dim rowTest As DataRow = dtTest.NewRow ' create row
我尝试重新导入subReport,但什么都没发生。有什么想法吗?