RDLC: Is there a way to print multiple tables without SubReports?
        Posted  
        
            by Eduardo Molteni
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Eduardo Molteni
        
        
        
        Published on 2010-04-28T13:28:34Z
        Indexed on 
            2010/04/28
            15:33 UTC
        
        
        Read the original article
        Hit count: 521
        
I'm generating the RDLC XML schema and showing the report in the ReportViewer control. No problems there.
Now, I want a report with 2 tables, with 2 differents dataset.
Something like this gets generated:
<Body>
    <ReportItems>
            <Table Name="Table1">
            ....
            </Table>
            <Table Name="Table2">
            ....
            </Table>           
    </ReportItems>
</Body>
But, when printed, both tables start from the top, printing on table over the other (not nice)
Is there a way to tell that Table2 should start after Table1?
Update: I've tried with List with a fake DataSource, but it does not work.
© Stack Overflow or respective owner