Rasteredge supplies several EAN-13 barcode printing and generating solutions and products by using VB.NET. It is easy to create EAN-13 barcodes via vb.net in .NET Windows Forms, ASP.NET web projects, and Crystal Reports as well as SQL server reporting services.
Related .net document control helps:
asp.net pdf viewer using c#: ASP.NET PDF Viewer Control: view, navigate, zoom Adobe PDF document in C# ASP.NET
c# asp.net mvc document viewer: ASP.NET Document Viewer using C#: Open, View, Annotate, Redact, Convert document files in ASP.NET using C#, HTML5, JQuer...
c# asp.net text file viewer: ASP.NET Text file viewer in MVC, WebForms: Open, view, annotate, convert txt files in C# ASP.NET
c# asp.net pdf editor: EdgePDF: ASP.NET PDF Editor Web Control: Online view, annotate, redact, edit, process, convert PDF documents
c# asp.net image viewer: ASP.NET Image Viewer Control(MVC & WebForms): view, annotate, redact, convert image files in html, JQuery
c# asp.net tiff viewer: ASP.NET Tiff Viewer: view, annotate multipage Tiff images in ASP.NET MVC, WebForms using C# Control
asp.net edit pdf image using c#:
ASP.NET PDF Image Edit Control: online insert, edit PDF images in C#
EAN-13 is a linear barcode symbology which encodes numeric only with a fixed barcode length. The EAN-13 barcode symbology is primarily used at retail industry to identify product at the point of sales. It encodes 13 digits only, 12 data message and 1 check digit. The 13 digits consist of 2 or 3 country code, 9 or 10 product data message, and one checksum digit.
Benefits of EAN-13 Generator in VB.NET
- Generate standard EAN-13, EAN13+2, EAN13+5 barcodes in Visual Basic .NET
- Easily integrate EAN-13 barcode printing function into .NET project templates with Visual Basic
- Capable of creating EAN-13 in .NET WinForms, ASP.NET Web projects, Crystal Reports, and SSRS, etc.
- Create EAN-13 barcodes in VB.NET for .NET framework 2.0 and up applications
- Easy to customize EAN-13 bar width (X dimension) and height (Y dimension) through Visual Basic .NET
- Export high quality EAN-13 barcode images in .NET project templates
- Automatically calculate EAN-13 check digits in .NET applications with VB.NET
- Excellent and easy EAN-13 generating performance in VB.NET
EAN-13 Barcode Generating with VB.NET - Free Trial Version Download
Each barcode generating product listed below includes VB.NET code sample for easily creating EAN-13 barcodes in these project templates
- Download .NET Barcode SDK for EAN-13 Generation
- Download .NET Windows Forms Barcode Control for EAN-13 Creation
- Download ASP.NET Web Barcode Control for EAN-13 Generation
Create EAN-13 Bar Codes with Visual Basic .NET
It is really easy to generate EAN-13 barcodes in VB.NET for multiple .NET framework applications. The following code lists a quick view for generating EAN-13 in .NET projects.
How to create EAN-13 for .NET Windows Forms projects with VB.NET
- Download the .NET WinForms barcode control, unzip the package, and add Rasteredge.Barcode.WinForms.dll to .NET project.
- Choose the Rasteredge.Barcode.Linear class to generate EAN-13 barcodes by using VB.NET class.
- Add the following VB.NET code to your .NET class:
Dim barcode As Rasteredge.Barcode.Linear barcode = New Rasteredge.Barcode.Linear()
barcode.Symbology = Rasteredge.Barcode.Symbology.EAN13
barcode.Code = "019876543210"
barcode.drawBarcode2ImageFile("C://ean_13.gif")
How to create EAN-13 in ASP.NET Web projects with VB.NET
- Download the ASP.NET Web barcode control, unzip the package, and add Rasteredge.Barcode.ASP.NET.dll to .NET project.
- Choose the Rasteredge.Barcode.Linear class to generate EAN-13 barcodes by using VB.NET class.
Dim barcode As Rasteredge.Barcode.Linear barcode = New Rasteredge.Barcode.Linear()
barcode.Symbology = Rasteredge.Barcode.Symbology.EAN13
barcode.Code = "019876543210"
barcode.drawBarcode2ImageFile("C://ean_13.gif")