Adding Custom Labels to the Label Wizard

The ReportBuilder Label Wizard contains an extensible architecture that enables additional sets of labels to be created and registered.

Creating new label sets is a very simple process.

    1. Open ppLabelDef.pas located in RBuilder\Source.This unit contains the TppLabelSet class which is the abstract ancestor class for all label sets. This class contains the necessary logic to translate label specs into report specs.

      Descending from this class are two additional classes TppLaserJetLabels and TppDotMatrixLabels. All label sets should descend from one of these two classes.

    2. Open ppAvStd.pas located in RBuilder\SourceThis unit contains the TppAveryStandardLaserJetLabels class and the TppAveryStandardDotMatrixLabels class.
      The label specs are declared as const arrays, with each string element of the array representing a specific type of label.
      Example code from ppAvStd.pas:


      As you can see in the above example code, each label spec consist of a comma delimited string that describes the dimensions of the label and the label sheet.
    3. The LabelSet class defintion for AVeryStdLaserJet labels consist of three methods, each containing a single line of code. These are shown below:

       
    4. The initialization/finalization sections at the bottom of the unit contain the RegisterLabelSet calls to make the label set known to the Label Wizard.
    5. ppAvIntl.pas located in RBuilder\Source contains the definitions for Avery International Labels.