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 |
---|---|
Refer to the Pharmacode specification for more details.
Add the Bar Code to a Report
Drag the XRBarCode item from the DX.24.1: Report Controls tab and drop it onto the report.
Set the XRBarCode control’s Symbology property to Pharmacode (an object of the PharmacodeGenerator type).
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.
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: