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.
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.
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.