No Data in Crystal Report
I have an application developed with VB6.0.
I use seagate crystal report 7.0 for reporting.
I set the db location in crystal report and running the report in crystal report designer.
I can see the report running correctly with data.
but when i call the report from my application, the report is appear without data.
how can i do for this problem.
Re: No Data in Crystal Report
Please, post your vb6 code where you call the report
Re: No Data in Crystal Report
CrystalReport1.Reset
CrystalReport1.Connect = strConnectString
CrystalReport1.ReportFileName = App.Path & "\Report\Reportfour.rpt"
CrystalReport1.StoredProcParam(0) = cboCaseNo
CrystalReport1.StoredProcParam(1) = IIf(cboProposeNo = "-", "99", cboProposeNo)
CrystalReport1.WindowState = crptMaximized
CrystalReport1.action = 1
Re: No Data in Crystal Report
I would check to make sure the parameters are receiving real data and then test to see if it pulls correct data in the Crystal designer outside your program.