The most recent Crystal XI component for Delphi was released for Delphi 7. That VCL component compiles in D2007, but gives me errors at runtime. What is the best way to display a database-connected Crystal Report in a Delphi 2007 application?
|
1
|
|
|
|
|
|
I know it's not your question and it might not be an acceptable answer at all in your situation, but I have found FastReports to be clearly superior to Crystal for my purposes. It's lighter weight, includes a real scripting language, incorporates event handling, can make calls into your native code for information and updates and does not require an ActiveX connection. I can export my reports into sharp looking PDF files or Excel spreadsheets and several other formats. The quality of the output adds to the overall experience users get from my application. I could go on, but if it's off topic for you, it won't be helpful. |
||||
|
|
|
This is the solution I've found, using ActiveX: First, register the Active X control like this: In Delphi, choose Component -> Import Component Click on "Type Library", click Next Choose "Crystal ActiveX Report Viewer Library 11.5" Pick whatever Palette Page you want (I went with "Data Access") Choose an import location Exit out of the wizard Add the location you chose to your project Search Path Now this code should work:
If you use this method, then this (rather dense) reference will be helpful, especially since Intellisense doesn't work on Ole objects like these. |
|||
|
|
|
|
For the sake of anyone else who can use it, here is a complete class that gives a pleasant wrapper around these vile Crystal interactions. It works for me about 80% of the time, but I suspect a lot of this stuff is very dependent on the specific platform on which it runs. I'll post improvements as I make them. Somebody at Business Objects should really take a hard look at this API. It sucks pretty badly.
|
||
|
|
|
|
I too have been disappointed with the lack of effort by Crystal Reports with respect to application integration. I use the RDC, and from what I understand this is being deprecated and emphasis is being placed on .Net. My application has these files in the uses clause: CRRDC, CRAXDRT_TLB, It works ok. The because drawback is parameter passing. In my option the parameter dialog boxes which come with the viewer are terrible. So I use my own Delphi application to prompt for parameters and pass them to the report. |
||
|
|
|
|
How send parameters from Delphi to reports? |
||
|
|
