Hi!
I havean application developed usingVS2010SP1(VB), Crystal Reportsand .NETFramework 3.5SP1.
In one ofthe client computers(WindowsXPSP3) I haveinstalledCrystal Reports13.0.12Redist. IfI try to openany report,the application closes(whenreport.Load())without showing anyerror message.Here is the code:
DimreportAs NewReportDocument()
report.Load(My.Application.Info.DirectoryPath + "\ Reports \" + "report.rpt")
report.Refresh()
CrystalReportViewer1.ReportSource= report
"Report.rpt" isan emptyreport, onlyatest text, withoutaccessto anydata basewithoutparameters...
Inthe project referencesI have:
CrystalDecisions.CrystalReports.Engine
CrystalDecisions.ReportSource
CrystalDecisions.Shared
CrystalDecisions.Windows.Forms
On other computersrunning smoothly. I have alsotriedtocreate a new projectfrom scratch, which opens thissame reportand runs smoothly.
Thkx!