hi;
i try to use this code to integrate crystal report and i m using three variable:
CRViewer Automation 'Crystal ActiveX Report Viewer Library 10.0'.CrystalActiveXReportViewer
CRReport Automation 'Crystal Reports ActiveX Designer Design and Runtime Library 10.0'.Report
CRApp Automation 'Crystal Reports ActiveX Designer Design and Runtime Library 10.0'.Application
and now my code:
CREATE(CRApp);
CREATE(CRViewer);
CREATE(CRReport);
CRReport := CRApp.OpenReport('C:\Users\BALLO\Desktop\test1.rpt',0);
CRViewer.ReportSource:= CRReport;
CRViewer.ViewReport();
but i got an error:
The data type is not supported by C/SIDE. You can access data from any of the following data types: VT_VOID, VT_I2, VT_I4, VT_R4, VT_R8, VT_CY, VT_DATE, VT_BSTR and VT_BOOL.
thanx for help.
0