KA.Barcode for .NET Suite
How to Generate RM4SCC in VB.NET Application
How to generate & print RM4SCC Bar Code Images in ASP.NET, IIS, C#, VB.NET class library

VB.NET Barcode Generator: how to generate, print RM4SCC barcode using vb.net in crystal report, asp.net, winforms



  • Create RM4SCC linear postal barcodes in MS Visual Studio and other .NET development environments
  • Generate accurate RM4SCC barcodes in ASP.NET webform and windows forms with VB.NET
  • Insert RM4SCC in SQL Server Reporting Services as well as Crystal Reports
  • Programmatically draw, make RM4SCC in Visual Basic.NET class & console applications
  • Easily adjust RM4SCC barcode size with parameters like bar width, image width & height, etc
  • Support RM4SCC barcode image rotation in 0, 90, 180, or 270 degrees in VB.NET programming
  • Thermal printer support for accurate RM4SCC image output
This RM4SCC barcode creator for VB.NET is a mature and efficient generation control for developers to create high quality RM4SCC in multiple .NET development environments, such as VB.NET Windows Forms, VB.NET ASP.NET web applications. You can easily adjust barcode settings with VB.NET class library. Below is the VB.NET sample code for your generation.

barcode generator in asp.net code project, java barcode generator, vb.net generate 2d barcode, itextsharp barcode vb.net, c# create and print barcode, print barcode crystal report using c#
RM4SCC Barcode Introduction
RM4SCC is a postal barcode symbology used by the UK Royal Mail for its Cleanmail service. It is also named British Royal Mail 4-State Customer Barcode, RoyalMail4SCC, Royal Mail Barcode.
  • RM4SCC Encodable Character Set: Upper-case alphanumeric A-Z, 0-9
  • RM4SCC Data Length: Variable
RM4SCC Generation in VB.NET Class Library

How to Install RM4SCC Barcode Encoder Control into your .NET Project

  1. 1.
  2. 2.
    Add "KeepAutomation.Barcode.Windows.dll" or "KeepAutomation.Barcode.Web.dll" to reference
  3. 3.
    Add either of the above barcode component dll to Visual Studio .NET ToolBox

How to Generate, Create RM4SCC in .NET Applications with VB.NET Demo Code

Dim rm4scc As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCode
rm4scc.Symbology = KeepAutomation.Barcode.Symbology.RM4SCC
' Set RM4SCC valid data: 0 to 9, upper-case letters A to Z. Data length: variable
rm4scc.CodeToEncode = "RM4SCCVBGenerator"

' Set RM4SCC image size

' Unit of measure: pixel, cm and inch
rm4scc.BarcodeUnit = BarcodeUnit.Pixel
' RM4SCC image resolution in dpi
rm4scc.DPI = 72
' RM4SCC bar module width (X dimention)
rm4scc.X = 3
' RM4SCC bar module height (Y dimention)
rm4scc.Y = 60
' RM4SCC barcode image width
rm4scc. BarCodeWidth=200
' Image left margin size, minimum is 10X.
rm4scc.LeftMargin = 0
' Image right margin size, minimum is 10X.
rm4scc.RightMargin = 0
' Orientation, 90, 180, 270 degrees supported.
rm4scc.Orientation = Orientation.Degree0

' Set RM4SCC human readable text style

' Display human readable text
rm4scc.DisplayText = true;
rm4scc.TextFont = new Font("Arial", 10f, FontStyle.Regular)
' Space between barcode and text
rm4scc.TextMargin = 6;
rm4scc.generateBarcodeToImageFile("C://rm4scc-vb-net.gif")

' Generate ISBN barcodes in image GIF format
rm4scc.generateBarcodeToImageFile("barcode-rm4scc-csharp.gif");

' Create ISBN barcodes in Stream object
rm4scc.generateBarcodeToStream(".NET System.IO.Stream Object");

' Draw & Print ISBN barcodes to Graphics object
rm4scc.generateBarcodeToGraphics(".NET System.Drawing.Graphics Object");

' Generate ISBN barcodes & write to byte[]
byte[] barcodeInBytes = rm4scc.generateBarcodeToByteArray();

' Generate ISBN barcodes & encode to System.Drawing.Bitmap object
Bitmap barcodeInBitmap = rm4scc.generateBarcodeToBitmap();

Other image formats including Png, Bmp, Tiff and Jpeg are also available to suit your needs.