Hello,

I ame currently working on a planning software project.

I have created a report to print orders per day.
However i would like to add more reports to the same report view on different pages.

Is this possible?

This is the current code i ame using on the form containing the report view:

Code:
Public Class frmPrint
    Dim Datum As Date
    Public Sub New(ByVal Datum As Date)
        InitializeComponent()
        Me.Datum = Datum
    End Sub
    Private Sub Print_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        'TODO: This line of code loads data into the 'dsPlanlijst.Planlijst' table. You can move, or remove it, as needed.
        Me.PlanlijstTableAdapter.Fill(Me.dsPlanlijst.Planlijst, Datum)

        Me.ReportViewer1.RefreshReport()
    End Sub
End Class