Creating PDF files with editable form fields: ReportBuilder includes ability to create editable PDF forms. The form data can also be submitted via HTTP or manipulated via JavaScript using PDF buttons. There are two ReportBuilder components used to create form fields: TMyCheckbox and TppLabel. CheckBox: To create an interactive checkbox in PDF, place a TMyCheckbox Full Article…
Search the Wiki
Viewing 175 to 177 of 408 items
How To…Separate File for Each Group
Question “How do I export a separate file for each group in my report automatically?” Solution It is possible to automatically export each group inside a report as an individual file using the Group.NewFile property. See the steps below for more detailed instructions. Starting with RB 11, the Group.NewFile property was added giving the user Full Article…
How To…Send Each Page as a PDF
Question “Is it possible to create a new PDF file for each page in the report?” Solution This can be done by manually taking control of the StartJob/EndJob routines of the TppDevice. Start by creating a generic TppDevice object, assigning its OnPageReceive event and calling PrintToDevices. Next implement the OnPageReceive event to create a PDF Full Article…