• Easy to integrate RM4SCC barcode generation component into your VB.NET Programs
  • Completely written in VB.NET for .NET 2.0/3.0/4.0
  • Support numeric data and uppercase letters to be encoded in RM4SCC
  • Compatible with RM4SCC barcode specification
  • Simple to set RM4SCC barcode data length to suit your needs
  • User-defined options for customize RM4SCC barcode size, image, color, etc
  • Professional RM4SCC barcode generation component
Installation of .NET Barcode Generator in VB.NET
  1. Download BusinessRefinery.com VB.NET barcode component and unzip
  2. Add BusinessRefinery.Barcode.Win.dll or BusinessRefinery.Barcode.Web.dll to your .NET project reference
  3. Add .NET Barcode Generator .NET Windows Control Library to .NET Visual Studio Toolbox
  • Right click .NET Visual Studio Toolbox, select menu Choose Items...
  • In "Choose Toolbox Items" form, click button "Browse...", and select dll BusinessRefinery.Barcode.Win.dll or BusinessRefinery.Barcode.Web.dll
Encode RM4SCC Valid Characters in VB.NET
There are 2 elements that influence RM4SCC input characters: (a), RM4SCC valid character set; (b), RM4SCC valid length.

(a)RM4SCC Valid Character Set

RM4SCC barcode is an alphanumeric linear barcode which encodes:

  • 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
  • Uppercase alphabet: A-Z

VB.NET RM4SCC barcode allows users to encode numeric-only data into RM4SCC barcode:

Dim barcode As BusinessRefinery.Barcode.Linear barcode = New BusinessRefinery.Barcode.Linear()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.RM4SCC
barcode.Code = "9876543210"
barcode.drawBarcode2ImageFile("C://rm4scc.gif")

VB.NET RM4SCC barcode allows users to encode uppercase letter only into RM4SCC barcode:

Dim barcode As BusinessRefinery.Barcode.Linear barcode = New BusinessRefinery.Barcode.Linear()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.RM4SCC
barcode.Code = "ABCDEFG"
barcode.drawBarcode2ImageFile("C://rm4scc.gif")

VB.NET RM4SCC barcode allows users to encode mixed data into RM4SCC barcode:

Dim barcode As BusinessRefinery.Barcode.Linear barcode = New BusinessRefinery.Barcode.Linear()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.RM4SCC
barcode.Code = "RM4SCC"
barcode.drawBarcode2ImageFile("C://rm4scc.gif")

(b)RM4SCC Valid Length

RM4SCC barcode is a variable-length discrete, self-checking linear barcode symbology.VB.NET RM4SCC barcode allows user to control RM4SCC barcode length using Code property.

barcode.Code = "9" // RM4SCC in 1-digit length
barcode.Code = "98765" // RM4SCC in 5-digit length
barcode.Code = "9876543210" // RM4SCC in 10-digit length
barcode.Code = "9876543210123456" // RM4SCC in 16-digit length





Quick Links