Question “How do I line up the group footer bands when using multiple columns and the amount of records in each group is different?” Solution This can be done by copying the draw commands in the existing group footers then moving them to the proper position on the page lined up with the lowest group Full Article…
Search the Wiki
How To…Align Memo Bottoms
Question “How can I align the bottoms of two stretching memos?” Solution This example contains a report with two stretching Memos inside a Region. Region.KeepTogether is set to True. The Memo OnDrawCommandCreate event is used to obtain a reference to the DrawCommand object that is created each time the object generates on the page. The Detail Full Article…
Displaying Boolean Field Values
Formatting boolean data fields with ReportBuilder can be performed using either of the following techniques: Specify a value for the TppDBText.DisplayFormat property. Example: DBText1.DisplayFormat := ‘True;False’; Specify a value for the TField.DisplayValues property of the dataset. Example: TField1.DisplayValues := ‘Yes;No;’ Note: If you have TField.DisplayValues assigned, please do not assign DBText.DisplayFormat.