当前位置:编程学习 > VB >>

水晶报表中添加dataset .xsd数据集问题

Dim dtTable As New DataTable
            Dim dtNewTable1 As New DataTable
            Dim dtNewTable As New DataTable
            Dim dtSchoolLunchBoxTotal As New DataTable

            dtNewTable1 = BindSchoolTotal(dtSchoolLunchBoxTotal)
            dtNewTable = loadSchoolLunchBoxTotal(dtNewTable1)
          ///dtNewTable是我在后台自建的一个datatable 这里可以得到数据
            dtTable = objDLSchool.generateSchoolLunchBoxTotel(dptStart.Value.Date)
           
            If dtTable.Rows.Count = 0 Then
                ErrorMessage("沒有記錄")
                Exit Sub
            End If
            Dim ds As New DataSet
            Dim objrptStatistics As New rptSchoolOrder11
            Dim objfrmReportViewer As New frmReportViewer

            ds.Tables.Add(dtTable.Copy)
            ds.Tables(0).TableName = "Table0"
            ds.Tables.Add(dtNewTable.Copy)
            ds.Tables(1).TableName = "Table1"
/// 在新建的dataset.xsd文件中建了一个表 字段和我在后台创建的表一样,名字为 Table1
            combineSameMeal(ds)
            objrptStatistics.SetDataSource(ds)
           
            objfrmReportViewer.crvMain.ReportSource = objrptStatistics
            objfrmReportViewer.ShowDialog()

 objrptStatistics.SetDataSource(ds) 这里面的ds也是两个table   问题就出在 我在水晶报表中将table1拖上去 然后安放字段 但是都是显示是空的 不知道怎么回事。。。哪位帮我指导指导。。
    
 自己先顶顶。。。。 晕了。。。没人回答 vb的没看懂什么意思,我只会c#
补充:VB ,  数据库(包含打印,安装,报表)
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,