- 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
RM4SCC VB .NET Generator - Overview
- Easily integrate with Visual Basic .NET IDEs
- Strong-named and time-stamped
- Compatible with Visual Basic Class library and Visual Basic Console Application
- Generate RM4SCC in VB.NET Reporting Service 2005 & 2008
- Create RM4SCC in VB.NET ASP.NET Web Server projects
- Equipped with a complete symbol size setting solution
- Allow the module to be resized
- Add flexible margins surrounding symbol to increase symbol readability
RM4SCC VB .NET Generator - RM4SCC Size Setting Functionality
Module bar setting
The basic size-setting item is the size setting of module bar. There are three factors that related to the size of module - the unit of measure, the bar height, and the bar width.
- Encode and set valid RM4SCC Data Charactors with VB.NET RM4SCC Generator
- Create and adjust RM4SCC barcode image with VB.NET RM4SCC Barcode Component
// construct a linear barcode object
Dim vbnetrm4scc As BusinessRefinery.Barcode.Linear
vbnetrm4scc = New BusinessRefinery.Barcode.Linear()
// set linear barcode symbology to rm4scc
vbnetrm4scc.Symbology = BusinessRefinery.Barcode.Symbology.rm4scc
// set the unit of measure
vbnetrm4scc.BarcodeUnit = BusinessRefinery.Barcode.BarcodeUnit.PIXEL
// set the bar height
vbnetrm4scc.BarHeight = 50
// set the bar width
vbnetrm4scc.BarWidth = 2
Margin Setting
Margins are add to enhance the readability of the barcode using RM4SCC VB .NET Generator.
Sample Code:// construct a linear barcode object
Dim vbnetrm4scc As BusinessRefinery.Barcode.Linear
vbnetrm4scc = New BusinessRefinery.Barcode.Linear()
// set linear barcode symbology to rm4scc
vbnetrm4scc.Symbology = BusinessRefinery.Barcode.Symbology.rm4scc
// set the width of margins around the symbol
vbnetrm4scc.TopMargin=10
vbnetrm4scc.BottomMargin=10
vbnetrm4scc.LeftMargin=10
vbnetrm4scc.RightMargin=10
RM4SCC VB .NET Generator - Quick Generating in VB.NET
1. How to add RM4SCC VB .NET Generator to your VB.NET IDEs
Sample Code:
// construct a linear barcode object
Dim vbnetrm4scc As BusinessRefinery.Barcode.Linear
vbnetrm4scc = New BusinessRefinery.Barcode.Linear()
// set linear barcode symbology to rm4scc
vbnetrm4scc.Symbology = BusinessRefinery.Barcode.Symbology.rm4scc
// set rm4scc code text to encode
vbnetrm4scc.Code = "01234567891"
//draw barcode and save into image file in png format
vbnetrm4scc.drawBarcode2ImageFile("rm4scc-in-vbnet.png")