Hi, I am searching a third-party report generating software that can be integrated with a VC++ written software we have. The report generator must be able to employ Table, Graph(just like Excel), Bitmap, Text. If anyone knows this stuff, please help.
Thx for the reply. I visited Crystal Report website, and it seems like CR can only be integrated with .NET, Java, and COM applications. I am not sure whether it is applicable to Visual C++. Also, I wanna minimize the cost of our VC++ software, so using a whole version of CR may not be possible. Any idea would be appreciated.
That is true partially.
In .NET , Crystal Reports is the standard and it is integrated as a control in the ToolBox.
The CR is working very well with Visual C++ before .NET working in .NET and Java.
There are many ways to use it is C++.
One way is to design your reports using CR standalone and store the reports in .rpt files.
An .rpt file encapsulates everything about report: layout, database, database connection, SQL queries etc...
At run time in your C++ application , only you have to use CR API functions to execute the .rpt files which means: connect with database, generate the report in the background if you want and print it also in background or view it.
CString csPathToRPT = "myreport.rpt";
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.