Hi Peter
I looked at the files, but I have no idea how this works at all. To me, the pertinent part is the actual code that loads the report. E.g.; TirExecVisFaktura.aspx
And I do not see a report loaded on this page. Report load is commented out.. Normally, the code should look something like this:
Dim crReportDocument As New CrystalDecisions.CrystalReports.Engine.ReportDocument
crReportDocument.Load("C:\WindowsApplication5\test.rpt")
crReportDocument.SetDataSource(ds)
CrystalReportViewer1.ReportSource = crReportDocument
- Ludek