![]() |
|
Crystal Reports - Printable Version +- Atozed Forums (https://www.atozed.com/forums) +-- Forum: Atozed Software (https://www.atozed.com/forums/forum-1.html) +--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html) +---- Forum: English (https://www.atozed.com/forums/forum-16.html) +----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html) +----- Thread: Crystal Reports (/thread-1958.html) |
Crystal Reports - Blanca80 - 09-10-2020 Hello, My company is migrating to intraweb a vcl Delphi application. We use intraweb 15.2.x and the TMS Intraweb Component pack. Now we need to create reports. We have the old system with Crystal Reports. iS this compatible with intraweb? i mean it is possible to use the crystal reports through intraweb? thank you.
RE: Crystal Reports - kudzu - 09-11-2020 Many users use Crystal Reports with IntraWeb. RE: Crystal Reports - Alexandre Machado - 09-15-2020 Most developers create PDF based reports which are the standard for web reports. There are a couple of demos that show how the basics should work when generating a report. More specifically, using the file cache. You basically generate a PDF file using any report generator, including Crystal, and add it to the cache. Then you just use it as any PDF file in a web application. For instance this one: https://github.com/Atozed/IntraWeb/tree/master/XIV/Delphi/Working%20with%20Cache/OneTimeCache RE: Crystal Reports - joelcc - 09-18-2020 (09-15-2020, 09:22 AM)Alexandre Machado Wrote: Most developers create PDF based reports which are the standard for web reports. Also, Just make sure that your report writer is set to be threadsafe. here is some example code for reportbuilder Code: procedure fxProcess_Report(ARBreport:TppReport;Output_type:string; Send_Stream:boolean=false;AFileName:string='';APdfPassword:string='');RE: Crystal Reports - DanBarclay - 09-18-2020 If you are not sure that your report writer is threadsafe you can put it in a CGI. I do not know if Crystal Reports is threadsafe or not. https://www.atozed.com/forums/showthread.php?tid=761&pid=1860#pid1860 Dan |