Telling the Printer to Report Builder

1

I use ReportBuilder in my applications and would like to know how to tell which printer it will use to print before displaying the report.

    
asked by anonymous 16.12.2014 / 17:42

1 answer

2

A solution found in the component's DeveloperGuide:

uses
  ppTypes;

ppReport1.DeviceType := dtPrinter;
ppReport1.Print;

This section displays a dialog box for the user to tell which printer to use.

    
15.01.2015 / 12:26