Skip to main content
All docs
V25.1
  • Pharmacode

    • 2 minutes to read

    Pharmacode is a binary code developed by the German LAETUS GMBH company. The code is widely used in the pharmaceutical industry as a packaging control system. It can be either one-track or two-track.

    One-Track Pharmacode

    Two-Track Pharmacode

    pharmacode-one-track

    pharmacode-two-track

    Refer to the Pharmacode specification for more details.

    Add the Bar Code to a Report

    1. Drag the XRBarCode item from the DX.25.1: Report Controls tab and drop it onto the report.

    2. Set the XRBarCode control’s Symbology property to Pharmacode (an object of the PharmacodeGenerator type).

      one-track-pharmacode-in-designer

    3. Specify common barcode properties and properties specific to Pharmacode.

    Specific Properties

    Use the PharmacodeType property to specify whether the Pharmacode has one or two tracks.

    Runtime Example

    The following code creates a one-track Pharmacode and specifies its properties.

    View Example: How to add a bar code to a report

    using System;
    using System.Collections.Generic;
    using System.Drawing.Printing;
    using System.Windows.Forms;
    using DevExpress.XtraPrinting.BarCode;
    using DevExpress.XtraReports.UI;
    // ...
    public XRBarCode CreatePharmacodeBarCode(string BarCodeText) {
        // Create a barcode control.
        XRBarCode barCode = new XRBarCode();
    
        // Set the type to Pharmacode
        barCode.Symbology = new PharmacodeGenerator() {
            // Specify the Pharmacode type
            PharmacodeType = PharmacodeType.OneTrack
        };
    
        // Adjust the appearance.
        barCode.Text = BarCodeText;
        barCode.Height = 100;
        barCode.Width = 220;
    
        return barCode;
    }
    

    The code example below shows how to create a report with the Pharmacode barcode:

    using DevExpress.XtraPrinting.BarCode;
    using DevExpress.XtraReports.UI;
    //...
    
    var barCode = CreatePharmacodeBarCode("101070");
    
    var report = new XtraReport() {
        Bands = {
            new DetailBand() {
                Controls = { barCode }
            }
        }
    };