.NET Barcode Control for RDLC Reports Tutorial
Generate and Print Barcodes in RDLC Report files in .NET Windows Forms Applications
Download .NET Barcode Generator for RDLC report files
Purchase .NET Barcode Generator for RDLC License
"At the beginning, some problems hindered my project and the support team did a great job getting the application development back on track. Thanks again!"
- Siew Thong Ng, Australia

Add & insert high quality linear and 2D barcodes to RDLC report files

  • Easy to install & integrate Barcode Control DLL for RDLC
  • Strong-named and signed assembly for .NET 2.0, 3.0, or greater
  • Compatible with SQL Server 2005 and 2008 with Adventure Works sample database installed
  • Easy to be used in C#, VB.NET, Managed C++ and Borland Delphi for .NET
  • Barcodes generated are compatible with latest barcode symbology ISO Standards
  • Generate barcodes in image files as well as in the memory
  • Customize barcode image, size, rotation, resolution via VB.NET and C#
  • C# source code is available with purchase of the unlimited developer license
This document explains how to use .NET Barcode Generator to generate and print barcodes on local reports RDLC files.
To order .NET RDLC Barcode Generator, please directly refer to: Purchase .NET Barcode Generator for RDLC License.
How to generate & print barcodes in your local reports RDLC files in .NET Windows applications?
Top

This Tutorial Working Environment

  1. .NET Barcode Generator - Download .NET Barcode Generator for RDLC report files.
  2. Microsoft Visual Studio 2005 or later version.
  3. SQL Server 2005 (any edition) with AdventureWorks Database installed.

Generate Barcodes in RDLC

  1. Create a new .NET Windows Application project. Name the project as "RDLCBarcodeDemo".



  2. Create a new DataSet.
    • Create a new DataSet named "AdventureWorks.xsd".



    • In toolbox, drag and drop "TableAdapter" to your created DataSet.
    • Create a new connection or use existing connection to SQL Server AdventureWorks Sample Database.
    • "Use SQL statements" as the way TableAdapter access the database.
    • "SELECT ProductID, Name FROM Production.vProductAndDescription WHERE (CultureID = N'en')" as SQL statements. Then, click "Finish" button.
    • Create a new column in the DataTable named "Barcode", by right click "vProductAndDescription" on the DataSet.



    • Change new column "Barcode" data type to "System.Byte[]". The type value is not available to select, you need manully input.



    • Save DataSet "AdventureWorks.xsd".
  3. Create a new Report named "Report1.rdlc".



  4. In Report Items from Toolbar, insert a Table to the report.
  5. Add 3 columns in DataSet "AdventureWorks.xsd" to the report table details section. And then, drag an Image item to the last column "Barcode".



  6. Set image item property "MIMEType" to "image/jpeg".

    Set image item property "Source" to "Database".

    Set image item property "Value" to "=Fields!Barcode.Value". And save the report.



  7. Open your Windows Form, and insert a Report Viewer control on the form. And choose your created report "Report1.rdlc".



  8. Add "OnBarcode.Barcode.winforms.dll" to .NET project reference from the "Solution Explorer".
  9. Copy the following C#.NET code into the method Form1_Load and run the Windows application.
   private void Form1_Load(object sender, EventArgs e)
{
// load data to the data table
this.vProductAndDescriptionTableAdapter.Fill(this.AdventureWorks.vProductAndDescription);

// create a linear barcode object
Linear barcode = new Linear();

// set barcode type to Code 128
barcode.Type = BarcodeType.CODE128;

// draw barcodes for each data row
foreach (AdventureWorks.vProductAndDescriptionRow row
in this.AdventureWorks.vProductAndDescription.Rows)
{
// set barcode encoding data value
barcode.Data = row.ProductID.ToString();

// set drawing barcode image format
barcode.Format = System.Drawing.Imaging.ImageFormat.Jpeg;

row.Barcode = barcode.drawBarcodeAsBytes();
}

this.reportViewer1.RefreshReport();
}


.NET RDLC Report Barcode Generator Supported Barcodes
Top

.NET Barcode Control for RDLC Local Report - Barcode Image Generation

OnBarcode is a market-leading provider of barcode imaging generator, reader controls and components for ASP.NET, Windows Forms, WPF, as well Java, Android, iOS (iPhone, iPad) across all major enterprise development platforms. We provides comprehensive tutorials and how-tos for various linear, 2d barcode information, such as C# in ASP.NET, C# .NET, C# Barcode Encoding, C# Barcode Image, VB.NET in ASP.NET, VB.NET Winforms, VB.NET Barcode Encoding. OnBarcode barcode products are supported by RasterEdge ASP.NET Document Viewer, which supports ASP.NET PDF Viewer, ASP.NET MVC Document Viewer, ASP.NET PDF Editor, MVC PDF Viewer. And provide high quality C# Convert PDF to Tiff, C# Convert PDF to Word, C# Convert PDF to HTML, C# Convert PDF to Jpeg images, and their easy and simple documents, like C# PDF SDK, C# extract text from PDF, C# Compress PDF, Print PDF in C# and C# extract image from PDF.
Terms of Use | Privacy Policy
Copyright © OnBarcode.com . All rights reserved.