Search the Wiki

Viewing 352 to 354 of 409 items

How To…Suppress Other Report Objects with Repeated DBText

Question “I have a DBText set to Suppress Repeated Values.  Is it also possible to suppress other report objects located in the detail band if the DBText is a repeated value?” Solution Use the DetailBand.BeforePrint event to determine whether the current record value is repeated, then toggle the visibility of the other components in the  Full Article…

0

How To…Skip Printing a Defined Number of Labels

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…

0

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…

0