valos
valos
About
- Username
- valos
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
valos wrote: » Hi, I have a report that has some TfrxADOdatabase objects placed on "Data" page. I need to modify at runtime the DatabaseName property of these objects from within the code. Below is an example: pFormReports->Report-&…
-
Try to use this: TMemoryStream* pMem = new TMemoryStream(); Report->PreviewPages->SaveToStream(pMem); pMem->Position = 0; //do whatever with that stream ...
-
Try to set PDFExport.PrintOptimized := true; where PDFExport is the export component.
-
gordk wrote: » the demo is still in the binaries example pageorder in a multi page report, posted by den on 8/4/2006 OK, I found the example but it doesn't help me too much. The problem is that I made a report builder using FR engine (ru…
-
gordk wrote: » did you set printoptions collate to true? I did but it doesn't make any difference. Anyway, I'm exporting the report to PDF first and then I print it. It doesn't collate regardless of I print the report or I export it to …
-
gordk wrote: » you need to create a multi design page report, IIRC there is a couple of demos in the binaries newsgroup. I did actually, but it prints Page1 first (n copies) then Page2 (n copies), where n = number of records in the dataset.…
-
sun wrote: » Hi, in pdf export filter, when exporting memo with AllowHtmTag flag set to true, it exports as a bitmap. Is anybody resolve that problem? I have also noticed that the size of generated PDF increases exponentially with the num…
-
valos wrote: » Hi , Has anybody installed successfully FastReport 4.6 + TeeChart 7.07 in C++Builder 6? All packages recompile fine except frxTee6.bpk, where I get this error: [Pascal Fatal Error] frxChartHelpers.pas(25): File not found…
-
Hi, I had some similar issues and the only workaround for this (although not very elegant) was to use a narrow font like Universe Condensed of size 2. If the wrapped text is not too long it should fit on a single line using a such small font size…
-
That's a good idea, thanks.
-
It works fine now, thanks.
-
It works fine indeed. Many thanks.
-
Great, Thanks.
-
Hi, Can somebody from FastReport team confirm wheter or not this is a bug in their opinion and if this will be fixed or not in the next FR3 release please? Many thanks, Vasile
-
I don't know what is the relevance of SQL Server 2K here or how it handles CSV. The following CSV formats: 2,string3,"stri""ng4" and "2","string3","stri""ng4" ARE BOTH VALID and accepted by MS Excel. What I wanted to highlight here…