Question “How can I align the Group Footer to the bottom of the page?” Solution The following example uses the GrouppFooter.BeforePrint event to to align a static height group footer to the bottom of the page. Download: AlignGroupFooterToBottom.zip Sample Delphi code: procedure TForm1.ppGroupFooterBand1BeforePrint(Sender: TObject); var lPageBottom: Single; begin {Get the bottom of the page from the Full Article…
Search the Wiki
Viewing 292 to 294 of 408 items
How To…Write Checks Using ReportBuilder
Question “Is it possible to print pre-formatted checks using ReportBuilder?” Solution The following example uses a free Delphi library NumWords to convert numerical values into English text. This allows you to convert a dollar amount to a text string for check writing purposes. The full version of this library including other language translations is available Full Article…
How To…Print Receipts
Question “How can use ReportBuilder to print receipts to a continous roll of paper?” Solution Receipts have a unique characteristic in that they typically print on a continuous roll of paper – there is no concept of page size. For continuous printing use title/summary bands and remove the header/footer. Size the detail band to print Full Article…