Question “How do I start printing on the label of my choice when printing to a label sheet such as Avery?” Solution Use the DetailBand.BeforePrint event to keep track of the label that is being printed. Then toggle the visibility of the components in the detail band based on which labels you would like to Full Article…
Search the Wiki
Viewing 352 to 354 of 408 items
How To…Create Report Fields in Code
Question “How do I dynamically create a report in code based on the fields in a datapipeline?” Solution Yes, this is a matter of simply looping through all the fields in the datapipeline(s) and dynamically creating labels/dbTexts for each field in code. Download: DynamicFields.zip Sample Delphi code: procedure TForm1.CreateText; var liIndex: Integer; liNumFields: Integer; lLabel: Full Article…
How To…Create a Table of Contents
Question “How do I create a table of contents sorted by page at the beginning of my report?” Solution Use a group to separate out each topic in the table of contents. During the first pass of the report, keep track of the current page inside the OnGroupBreak event for each group, then build the Full Article…