Search the Wiki

Viewing 274 to 276 of 408 items

How To…Change Default Template Extension

Question “How do I change the default template extension in Open/Save dialogs?” Solution Use the following code to change the default file extensions which will be used when the open and save dialogs are created to load or save a template. Sample Delphi code: ppReport1.Template.FileExtension := '.mfe'; ppReport1.Template.FileFilter := 'My Format Extension (*.mfe)|*.MFE'; Substitute the  Full Article…

0

Multi-Page Spanning

Question: “I have more data than will fit on one page width. How can I span multiple pages?” Solution: If you are creating a crosstab report, this is done automatically. However, for other types of reports, this must be done manually. Basically, we will create one section-style subreport for each page width we need to cover.  Full Article…

0

How To…PageBreak when X Space Left

Question “How can I force a page break when less than X amount of space left?” Solution For simple layouts, use the DetailBand.PrintCount property to limit the number of times a static height detail band prints on each page. For layouts with dynamic height detail, this example shows how to use the DetailBand BeforePrint event  Full Article…

0