Search the Wiki

Viewing 298 to 300 of 408 items

How To…Fille Line With Dots

Question “How can I format each line with something like ‘Value…..’ such that ‘.’ characters are used to fill the remaining space?” Solution This example shows how to Use a Variable and its OnCalc event to append the appropriate number of ‘.’to each line. Download: FillLineWithDots.zip Sample Delphi code: uses ppTypes, ppUtils; procedure TForm1.ppVariable1Calc(Sender: TObject;  Full Article…

0

How To…Fill Space After the Last Column

Question “Once my columns have finished printing on a page, how can I fill the remaining space to the bottom of the page?” Solution Use a group footer band to fill the space.  Inside the GroopFooterBand.BeforePrint event, check the remaining space on the page and resize the band to match that size. Download: FillSpaceAfterLastColumn.zip Sample  Full Article…

0