BizCode Barcode Generator for RDLC
The most mature barcode solution for ReportViewer Local Reports (RDLC)
Quick Overviews
  • Easy-to use barcode SDK
  • VS & RDLC 2005/2008 support
  • Various linear&2D barcodes
  • Dynamic file formats support
  • For all printers & scanners
How to Generate Code 39 in RDLC Reports
Code 39, also known as USD-3, 3 of 9, is an alphanumeric linear barcode used especially in non-retail environments, such as application by U.S. Government, U.S. military, and the Health Industry Bar Code Council (HIBCC).
Barcode Generator for RDLC is a .NET Software Development Kit that generates 20+ linear & 2D barcode in RDLC reports. It integrates with RDLC reports easily, and draws high quality graphics object. No barcode font is needed.
Code 39 RDLC Generator could be used to insert Code 39 barcode images into RDLC reports. The Code 39 barcodes generated in the reports are graphics object with high quality. The generated Code 39 barcodes are compatible with ISO / IEC 16388 (2nd edition 2007-05-15).
With Code 39 RDLC barcode generator, you can easily add the the asterisk characters (*) start and stop characters to the symbol. Moreover, the width of the wide bars and narrow bars in one symbol could be adjusted.
Code 39 Generator for RDLC Features
Valid Data Valid character set includes:

- 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
- Uppercase letter A - Z
- Lowercase letter a - z (Extended Code 39 only)
- (Dash), $ (Dollar), % (Percentage), (Space), . (Point), / (Slash), + (Plus)
Extended Code 39 Support the generation of extended Code 39 in RDLC reports.
Start and Stop Characters Easily show the asterisk characters as the start and stop characters of Code 39.
Checksum Calculation Automatically calculate the checksum digit basing on your specified data string.
Size Adjustments Easy to set and adjust the size of modules in the symbol, margins around the symbol, and the entire image.
White Space Increase Provide property to increase the margins around symbol therefore barcode readability would be enhanced.
Code 39 Generator for RDLC Requirements
Windows OS
- Windows 7
- Windows Vista
- Windows XP
Development Environments
- .NET 2.0, 3.0 or later version
- C#, VB.NET, Managed C++, Borland Delphi for .NET
- Microsoft Visual Studio 2005/2008/2010
How to add RDLC Barcode Generator DLL to RDLC Report
  1. Download Barcode Generator for RDLC and unzip it;
  2. Open Visual Studio, and create ASP.NET web form project;
  3. Add Barcode Generator DLL to the project reference;
  4. In Solution Explorer, right-click the "add new items" to add a class;
  5. Copy the C# or VB.NET sample code in the created class "APP_Code/Class1.cs";
How to Create Code39 in RDLC
  1. Select "Build" to "build web site";
  2. In Solution Explorer, right-click the "add new items" to add a report;
  3. Go to "Report Items" in toolbox to drag and drop a Table into the Report;
  4. Switch to the "Website Data Source" to add "Name" and "Price" into the report table details section; and drag an image in the last column "Barcode";
  5. Select the image and navigate the properties to set data source "database", set image MIMEType "image/jpeg" and set value "=Fields!Bit.Value";
  6. Switch back to Solution Explorer, right-click "Default.aspx" and select "View Designer"
  7. Drag a "ReportViewer" in Data of toolbox to the project;
  8. Choose your created report "Report.rdlc" from "Choose Report" menu;
  9. Debug the webpage, generated barcodes appear in your report.
Code 39 Generation Sample Code
run the report, barcode images will be showed on the web page.
using System;
using System.Collections.Generic;
using BusinessRefinery.Barcode;
using BusinessRefinery.Barcode.RDLC;
public class Product
{
private string m_name;
private int m_price;
private byte[] m_bit;
public Product(string name, int price, string data)
{
m_name = name;
m_price = price;
Linear barcode = new Linear ();
barcode. Symbology = Symbology.CODE39;
barcode. Code = data;
m_bit = barcode.drawBarcodeAsBytes();
}
public byte[] Bit
{
get { return m_bit; }
}
public string Name
{
get
{
return m_name;
}
}
public int Price
{
get
{
return m_price;
}
}
}
public class Merchant
{
private List<Product> m_products;
public Merchant()
{
m_products = new List<Product>();
m_products.Add(new Product("code128", 25, "code128"));
m_products.Add(new Product("code39", 30, "code39"));
m_products.Add(new Product("qrcode", 15, "qrcode"));
}
public List<Product> GetProducts()
{
return m_products;
}
}
Imports System.Collections.Generic
Imports BusinessRefinery.Barcode
Imports BusinessRefinery.Barcode.RDLC
Public Class Product
Private m_name As String
Private m_price As Integer
Private m_bit As Byte()
Public Sub New(name As String, price As Integer, data As String)
m_name = name
m_price = price
Dim barcode As New WebLinearBarcode ()
barcode. Symbology = Symbology.CODE39
barcode. Code = data
m_bit = barcode.drawBarcodeAsBytes()
End Sub
Public ReadOnly Property Bit() As Byte()
Get
Return m_bit
End Get
End Property
Public ReadOnly Property Name() As String
Get
Return m_name
End Get
End Property
Public ReadOnly Property Price() As Integer
Get
Return m_price
End Get
End Property
End Class
Public Class Merchant
Private m_products As List(Of Product)
Public Sub New()
m_products = New List(Of Product)()
m_products.Add(New Product("code128", 25, "code128"))
m_products.Add(New Product("code39", 30, "code39"))
m_products.Add(New Product("qrcode", 15, "qrcode"))
End Sub
Public Function GetProducts() As List(Of Product)
Return m_products
End Function
End Class