XtraReport不显示子报告

时间:2012-01-23 14:10:52

标签: vb.net devexpress report xtrareport

  

可能重复:
  How to use SubReport in XtraReport?

我的XtraReport出了问题 它不显示子报告,但它显示主报告 这是我的代码

Dim report As New XSalesReport()
    Dim ds As New DSProducts
    Dim sSQL As New System.Text.StringBuilder
    sSQL.AppendLine("SELECT  ")
    sSQL.AppendLine("*")
    sSQL.AppendLine("FROM PaymentTransactions ")

    Dim zSQL As New System.Text.StringBuilder
    zSQL.AppendLine("SELECT  ")
    zSQL.AppendLine("*")
    zSQL.AppendLine("FROM DailyTransactions ")

    CreateWaitDialog()
    SetWaitDialogCaption("Loading Report Data")
    Using SQLconnect As New SQLiteConnection(g_constring)
        SQLconnect.Open()
        Dim SQLAdapter As New SQLiteDataAdapter(sSQL.ToString, SQLconnect)
        SQLAdapter.Fill(ds.Payment)
        Dim SQLAdapter1 As New SQLiteDataAdapter(zSQL.ToString, SQLconnect)
        SQLAdapter1.Fill(ds.DailyTransaction)
    End Using
    report.DataSource = ds
    report.ShowPreview()
    CloseWaitDialog()

1 个答案:

答案 0 :(得分:2)

知道了......我只是在datatable ..

中加了一个关系