AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
maybe it's because FR can't print unicode characters.
-
can't say whats wrong without looking at your code...
-
Double-click the page, select "custom" from available papers and set sizes.
-
No, you have to build multiple pages (page = copy) in a single report. There is no methods to change a report when it is printing.
-
FastScript does not support records. Maybe next versions will do this.
-
Even when script is finished, all variables and objects (that have been not freed directly in the script) are available. You even can run the script again (by Execute method). If you perform Compile, all variables and objects will be destroyed.
-
Probably you need to download new drivers from HP site...
-
You should add TDozentIterator class (by AddClass) as well.
-
We're going to port FR to VCL.NET after Delphi8 release. After this, we may make a pure .NET version.
-
1) you should add classes by AddClass, not AddObject. 2) you can't use published method - you should define it by AddMethod (see the documentation how to do this).
-
There is no definition of TCustomForm.Canvas property. Will be added in the next release.
-
Thank you. FR is in alpha testing now. There is a demo, but we don't want to publish it until FR will be beta.
-
put column header and column footer bands on your report. Put horizontal lines on these bands and vertical lines to the master data band.
-
Composites should work. frReport1.LoadFromFile(file1); frReport2.LoadFromFile(file2); frCompositeReport1.Reports.Clear; frCompositeReport1.Reports.Add(frReport1); frCompositeReport1.Reports.Add(frReport2); frCompositeReport1.ShowReport;
-
FR can't print on non-default printer (in Windows environment). It's a QT bug, I can't make any workarounds. Please read knownbugs.txt file. Printing problems may caused by printer drivers (I never heard that images are printed rotated). Latest FR…
-
Please read the documentation about stretching memo fields.
-
FastReport was never tested with ISAPI and propbably can't work in this environment.
-
change QBAbout.pas to OQBAbout.pas, also change all occurences of 'QBAbout' in the QBuilder.pas and .dpk files.
-
at designtime - no way.
-
what kind of queries do you use - TfrDBXQuery, or DBX query component from your application?
-
the Powerpack is a set of third-party components for FastReport, written by FastReport community. We can't improve some components - just contact its author and ask for support.
-
if you want to print a dataset, use the TfrPrintTable component. if you want to print some report for each record in some dataset, assign this dataset to TfrReport.Dataset and set TfrReport.ReportType := rtMultiple.
-
seems your report can't be loaded correctly. Quick flash when you trying to preview it says that your report is empty. Try to specify full path to the file you want to load by LoadFromFile method.
-
Yes, we aware of this bug. Multi-column databands can't be stretched because band height is calculated only for last data column. This is behavior 'by design' and can't be fixed in the FR2.x architecture.
-
It is possible to change the footer height in a script. The first page footer can be changed only in the page.OnBeforePrint script, other footers can be changed from any place. You can make your report two-pass, calculate each footer height and stor…
-
Call frPreview1.Clear - it clears the previewed report.
-
We'll check this. In the meantime, use 'collate copies' feature, it should print well.
-
do not save rc as unicode. Save it as a plain text with your current codepage.
-
just make the bottom margin negative, for example, -10mm.
-
No, FR just perform the loop while not DB.EOF do DB.Next when running the report.