Form Emulation is the process of taking a paper-based or electronic form and rendering a likeness of it. The likeness may include formatting of the form itself, or may only contain the data which will ‘fill-out’ the form. There are two basic issues that a form emulation solution must resolve: How will the formatting of Full Article…
Search the Wiki
Drag and Drop Support
ReportBuilder contains a Report Wizard that allows you to quickly create an entire report layout. This is great for generating an entire report, but what if you need to create only a portion of a complex report? Drag and drop functionality is an ideal solution for this problem because it allows you to create a Full Article…
How To…Create a Crosstab via Code
Question “How can I create and configure a crosstab using code?” Solution The following example adds a crosstab to the detail band and defines row, column, and value dimensions. Download: CreateCrosstabViaCode.zip uses ppClass, daDataModule, ppReport, ppCTMain; procedure TForm1.CreateCrosstabInCode(aReport: TppReport); var lCrossTab: TppCrossTab; liRowDimension: Integer; liValueDimension: Integer; begin // create crosstab and place in the detail Full Article…