Possible Duplicate:
How to use SubReport in XtraReport?

I'm having a problem with my XtraReport it doesnt display the Sub Report but it Displays the main Report here's my Code

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()
link|improve this question

feedback

closed as exact duplicate by casperOne Jan 24 at 19:36

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 1 down vote accepted

Got it.. I just put a relation in both datatable..

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.