Search the Wiki

Viewing 313 to 315 of 408 items

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…

0

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…

0