Raised after the report finishes processing all pages.
private void rptMain_ReportEnd(object sender, System.EventArgs eArgs)
{
rptBookmarks rpt = new rptBookmarks();
rpt.pBM = this.Document.Bookmarks;
rpt.Run();
this.Document.Pages.InsertRange(this.Document.Pages.Count, rpt.Document.Pages);
}
Private Sub rptMain_ReportEnd(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportEnd
Dim rpt As New rptBookmarks()
rpt.pBM = Me.Document.Bookmarks
rpt.Run()
Me.Document.Pages.InsertRange(Me.Document.Pages.Count, rpt.Document.Pages)
End Sub