Question “My report columns will not all fit on one page. How do I extend them to the next page similar to a spread sheet?” Solution This can be done using multiple subreports connected to a single dataset. Each subreport will contain different columns of data, the second and so on containing the overflow columns. Full Article…
Search the Wiki
Viewing 355 to 357 of 408 items
Create SubReport in Code
TECH TIP: Creating a SubReport in Code A subreport is comprised of two objects: SubReport Control The subreport control is added to a band of the ‘parent’ report. It has properties such as ShiftRelativeTo, PrintBehavior, etc. In the Report Designer, the subreport is drawn as a rectangle. ChildReport The child report is a descendant of CustomReport and has most of Full Article…
Create Reports in Code
A ReportBuilder report is composed of a set of components. Like other standard Delphi components, the components which make up the report layout have a run-time interface. That is they can be created and configured using Object Pascal code. A complete example of creating a report entirely in code is contained in the Developers Guide. Full Article…