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…
Search the Wiki
Viewing 313 to 315 of 408 items
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…
Tech Tip…Select Interbase Current Date
Tech Tip…Select Interbase Current Date Question: “Using Interbase, how I can select the current date?” Answer: Select<br> Cast(‘Now’ as Date) Today