TECH TIP: Controlling the Built-in Previewer You can control the built-in preview form via the Report.OnPreviewFormCreate event. For example the following code sets the Print Preview form to maximized and sets the Viewer ZoomSetting to 100%: procedure TForm1.ppReport1PreviewFormCreate(Sender: TObject); begin ppReport1.PreviewForm.WindowState := wsMaximized; TppViewer(ppReport1.PreviewForm.Viewer).ZoomSetting := zs100Percent; end; Note: You will need to add ppViewr to the Full Article…
Search the Wiki
Viewing 172 to 174 of 408 items
PDF Unicode Support
ReportBuilder 12 introduced full unicode support for the native PDF device included with ReportBuilder. (Delphi 2009 and later). Below are some tips on how to utilize this feature and an overview of some of the new options. Encoding The PDF device now supports two types of font encoding. ANSI charset encoding and Unicode encoding. This Full Article…
PDF Fundamentals
Exporting a report to a PDF file using the built-in PDF device is very simple using ReportBuilder. Setting the TppReport.AllowPrintToFile property to True will enable the Print To File section of the Print Dialog. From there the PDF file type can be selected as well as a custom file name before the report is exported. Full Article…