fastreport

How can I print different bands depending on the value of a Field in a DataSet using FastReport?

I have a product's dataset and I want to have distinct bands for each type of product, something like, if the product is a fruit, print it's weight, if the product is a car print its color and so on. And I want to let my users customize it, so each band for each type o product will be perfect. My DataSet have all fields from all type o...

Last printer used when printing with Fast Report (in Delphi)

How to retrieve last user selected printer when printing from a preview window in Fast Report (Basic Edition ver. 4.7.1)? I tried frxReport.PrintOptions.Printer in OnAfterPrintReport event but it only returns the system default printer. After the user prints the report, the program prints a few Word documents and I need to know whic...

Fast report amount of copies

Fast report: how to set amount of document copies to be printed via c++ but not via standard parameters interface. ...

Print FastReport directly

I'm using FastReport in Delphi Win32. When a FastReport is called, it is previewed before you can print it. The user sometimes needs to print a series of reports. It's a PITA to preview then print each one separately. How can I queue the reports and send them directly to the default printer? ...

A report writer for non-programmers?

Hello, we are wanting for users to be able to write their own reports in our application. It is a web application. We don't care if they must download an application in order to create reports, but we need for them to be able to print off reports from the web in PDF format or similar. The report writer is to be used by non-programmers,...

FastReport page orientation change in Delphi

Does anybody know how to design report in FastReport so that when user changes page orientation all column headers and data autofits new page width? I couldn't find any anchor mechanism there. Maybe I can do that during run-time? But then I need to catch page orientation change event somehow. Can anybody help? ...

Code128/EAN128 barcode component for Fast Report?

During a migration of reports which contain EAN128 / Code128 barcodes to Fast Report I found that Fast Report does not use the correct symbology. The lines of a Code128 barcode are very wide so that they are perfect for long distance scanning in a warehouse. I reported it, but only received a recommendation for a third-party barcode libr...

FastReport preview not showing all pages

I'm using FastReport 4.7.31 in Turbo Delphi Pro. The following procedure processes the data stored in several dated files depending on user input. procedure TfrmMain.MyReportPrint; var MDate : Tdate; S, myfile : string; firstone: boolean; // Date1, Date2 & ShowPreview are global variables set via a dialog box begi...

How to print Fastreport directly without showing Print Dialog

I use Fastreport 4. I need to print directly to the printer without showing Print Dialog. I've unchecked the ShowDialog in the Print Options, but it keep showing a print dialog. Any help would be very appreciated. ...

Converting QuickReport To FastReport

I am Converting a QuickReport to a FastReport in Delphi source, I want to detrmine the event method name that assigned to a QuickReport object and according to it assign a method to the same event of the FastReport object. How can I do it? ...

FastReport - How to sum specific groupfooter values to a new footer band.

Hi, i'm trying to do the following with fastreport and delphi. I have a report containing... GroupHeader -------> Key to Customer Salesman MasterData -------> CustomerName, Balance GroupFooter -------> Sum(Balance) of Salesman-1 MasterData -------> CustomerName, Balance GroupFooter -------> Sum(Balance) of Salesman-2 M...

How to assign dataset dynamically to Fast report?

Hi all, I have created a report using Fast Report Designer and calling this using Delphi 6. But datasets for the master databad and the fields are not assinged at design time. Iwant to set these properties at runtime depends on the selected dataset. How can I do that. How can I access the dataset property of the master band in Delphi be...