- Barcode Products
-
Guide
- Generate barcodes in ASP.NET
- Generate barcodes in .NET WinForms
- Generate barcodes in Visual C#.NET
- Generate barcodes in Visual Basic.NET
- Generate barcodes in Java
- Generate barcodes in Crystal Reports
- Generate barcodes in Reporting Service
- Generate barcodes in RDLC Report
- Generate Barcodes in BIRT Report
- Integration
- Knowledge
- Order Now
- About Us
ISSN VB .NET Generator - Overview
- Easily integrate with Visual Basic .NET IDEs
- Compatible with VB Class library
- Built window control and web control to generate ISSN bar code image
- Equipped with a complete symbol size setting solution
- International Standard Book Number (ISBN) are supported
- Allow the module to be resized
- Add flexible Add-on symbol to accompany ISSN
ISSN - Brief Introduction
ISSN is the abbreviation of International Standard Serial Number.
Periodicals published in both print and electronic form may have two ISSNs, a print ISSN (p-ISSN) and an electronic ISSN (e-ISSN or eISSN).It is the most common identifier for prints and electronic periodical publication.
- Encode and set valid ISSN Data Charactors with VB.NET ISSN Generator
- Create and adjust ISSN barcode image with VB.NET ISSN Barcode Component
ISSN VB .NET Generator - ISSN Size Setting Functionality
1. Generate ISSN with Add-on Symbol
An add-on symbol could be used to accompany an ISSN in our ISSN Barcode Control for VB.NET. The add-on symbol is used to provide supplement information such as issue number and product price.
1. construct a linear barcode object
Dim barcode As BusinessRefinery.Barcode.Linear
barcode = New BusinessRefinery.Barcode.Linear()
2. Select the digits of the supplement barcode by seting linear barcode symbology
ISSN with 2-digit supplement barcode:
barcode.Symbology = BusinessRefinery.Barcode.Symbology.ISSN_2
ISSN with 5-digit supplement barcode:
barcode.Symbology = BusinessRefinery.Barcode.Symbology.ISSN_5
3. set ISSN code text to encode
For example, 977654321012:
barcode.Code = "977654321012"
4. set ISSN supplement code text to encode
For example, 21:
barcode.SupplementCode = "21"
5. draw barcode and save into image file in gif format
For example, Gif:
barcode.drawBarcode2ImageFile("issn-in-vbnet.gif")
ISSN VB .NET Generator - Generating Sample Code
1. How to add ISSN VB .NET Generator to your VB.NET Project
Sample Code:
// construct a linear barcode object
Dim barcode As BusinessRefinery.Barcode.Linear
barcode = New BusinessRefinery.Barcode.Linear()
// set linear barcode symbology to ISSN
barcode.Symbology = BusinessRefinery.Barcode.Symbology.ISSN
// set ISSN code text to encode
barcode.Code = "9773456789012"
//draw barcode and save into image file in gif format
barcode.drawBarcode2ImageFile("issn-in-vbnet.gif")