I have a crystal report file "FollowUp.rpt". When I open this file, it shows the "Main Report Preview" loaded data perfectly.
The problem I have is that when I want to show this report on the "FollowUp.aspx" form using the CrystalReportViewer1 object, nothing appears on the form at all. The strange thing is that there was error appearing "Error Loading Report" on the form. I fixed
this error by making sure the path of the underlying "FollowUp.rpt" file is accurate.
Now, although the error is fixed and no more shown, the CrystalReportViewer1 object is NOT Showing at all.
I am using Visual Studio Professional 2013, FireFox 35.0, SAP Crystal Report 13.0.9.1312.
My Code vb.net is as following:
Protected Sub OfficeExecute_Click()
If page.isvalid=True then
LoadReportData()
Dim crystalReport as new reportDocument()
crystalreport.load((Server.mappath("~ ...
Go to the complete details ...