TECH TIP: Printing a Disclaimer on the Back of Every Page. Question: “I want to use duplexing to print some legalese on the back of every page of my report. How do I do this?” Answer: This is fairly easy to do – basically, every odd numbered page will contain data, while every even numbered Full Article…
Search the Wiki
Viewing 283 to 285 of 409 items
How To…Standard Header/Footer
Question “How can I implement a standard header and footer for all of my reports? Solutions 1. When implementing form based reports, you can use Delphi’s form inheritance to create a base report layout Notes: Do not use inheritance for the DataPipelines, unless you set AutoCreateFields to False. Do not use Delphi form inheritance for Full Article…
How To…Skip First X Labels
Question “How can I skip the first X number of labels on a sheet, so that my users can reuse label sheets?” Solution The following exmple shows how to use the DetailBand.BandsPerRecord to to skip X number of labels. Download: SkipLabels.zip Download: SkipLabelsLeftToRight.zip Sample Delphi code: procedure TForm1.btnPreviewClick(Sender: TObject); begin // get number of labels Full Article…