GS1 DataBar VB.NET Generator Library SDK
How to generate, print linear GS1 DataBar barcode images in Visual Basic .NET application
"Thanks for your great work! For me, the most significant thing is that our users are really impressed with our .NET project."
- Vasko Klasevski, Australia
Generate barcode GS1 DataBar (RSS family) barcode images in Visual Basic .NET with complete sample VB.NET source code
- Install GS1 DataBar Linear Barcode Generator Control into Visual Basic .NET applications with simple steps
- Effectively use VB.NET Barcode Generator DLLs barcoding features for various .NET applications
- Generate barcode GS1 DataBar 1d images in Visual Basic .NET Class Library
- Create GS1 DataBar (RSS family) barcode images using VB for ASP.NET & WinForms applications
- Draw and print GS1 DataBar barcodes in .NET Reports, like Reporting Services, Crystal Reports & RDLC Local Reports
- Allow to save and encode GS1 DataBar barcode into image file format and in the memory
- Generate main linear & 2d barcodes, like VB.NET Code 39, VB.NET Code 128, VB.NET EAN-13, VB.NET Interleaved 2 of 5, VB.NET UPC-A, VB.NET QR Code, VB.NET Data Matrix, VB.NET PDF417
VB.NET GS1 DataBar Generator Library Introduction
Top
GS1 DataBar is a family of barcode types most commonly seen in the GS1 DataBar Coupon. Based on GS1 Standard, it all includes these versions: GS1 DataBar-14, GS1 DataBar-14 Truncated, GS1 DataBar-14 Stacked, GS1 DataBar-14 Stacked Omni-directional, GS1 DataBar Limited (formerly RSS Limited), GS1 DataBar Expanded (formerly RSS Expanded), and GS1 DataBar Expanded Stacked (formerly RSS Expanded Stacked).
It is an easy task to generate GS1 DataBar (RSS family) barcode images using
VB.NET GS1 DataBar Generator for VB.NET applications. This mature VB.NET Generator Library Control is easy to be installed with a single
.NET Barcode generator control. We provide customers with detailed
VB.NET GS1 DataBar settings document and complete demo for GS1 DataBar generation in VB.NET provided in this article.
Related GS1 DataBar Barcode Generator Controls & DLLs
To fulfill different barcode generation request, OnBarcode.com provide several GS1 DataBar Bar Code Generation Components:
GS1 DataBar in .NET,
GS1 DataBar in ASP.NET,
GS1 DataBar in C#.
How to Generate and Encode GS1 DataBar (RSS) Barcodes Using VB.NET Class
Top
To generate GS1 DataBar barcodes in VB.NET applications, please use the following sample code:
Imports OnBarcode.Barcode
Dim GS1_DataBar As Linear = New Linear
' GS1 DataBar (RSS family) Barcode Basic Settings
GS1_DataBar.Type = BarcodeType.RSS14
'GS1 DataBar (RSS family) valid data character set:
' 1) GS1 DataBar-14 versions and GS1 DataBar Limited: Digits 0 through 9
' (with the restriction of GS1 DataBar Limited to 0 or 1 in the first digit)
' 2) GS1 DataBar Expanded: a subset of Table 1 of the International Standard ISO/IEC 646,
' consisting of the uppercase and lowercase letters, digits, spaces, and 20 selected
' punctuation characters in addition to the Function 1 Character (FNC1)
GS1_DataBar.Data = "01999999999900"
' GS1 DataBar (RSS family) Size Related Settings
GS1_DataBar.UOM = UnitOfMeasure.PIXEL
GS1_DataBar.X = 3
GS1_DataBar.Y = 76
GS1_DataBar.BarcodeHeight = 101
GS1_DataBar.BarcodeWidth = 290
'GS1 DataBar (RSS family) Text Settings
GS1_DataBar.ShowText = True
GS1_DataBar.TextFont = New Font("Arial", 9.0F, FontStyle.Regular)
GS1_DataBar.TextMargin = 6
'Other Related Settings
GS1_DataBar.Rotate = Rotate.Rotate0
GS1_DataBar.Resolution = 96
' Image format setting
GS1_DataBar.Format = System.Drawing.Imaging.ImageFormat.Gif()
GS1_DataBar.drawBarcode("c://gs1databar.gif")
VB.NET Barcode Generators Demo Source Codes
Top
Barcode Control for VB.NET - Bar Code Type Generation