Our Customers
Contact Us Email: support@barcodelib.com
Home > ASP.NET Barcode > ASP.NET Barcode Generation Guide > ASP.NET RM4SCC Linear Barcode Creation Tutorial
Download Barcode for ASP.NET Trial

ASP.NET RM4SCC Barcode Generation Using C# & VB Class

Tutorial for RM4SCC Barcode Generation in ASP.NET Web Applications & IIS
  • Barcode.Lib.Barcode.ASP.NET.DLL supports .NET 2.0, 3.0 & 4.0 versions
  • It encodes 20+ linear and 2D barcodes in ASP.NET including RM4SCC barcode symbology
  • It generates standard RM4SCC barcode using Visual C# and Visual Basic Classes
  • It generates RM4SCC barcode image in ASP.NET web applications and IIS
  • It allows customizing RM4SCC barcode image according to users' demands
  • It is a professional ASP.NET barcode generator component used by extensive developers
ASP.NET RM4SCC Barcode Summary
RM4SCC symbology is a length-variable linear barcode. It is also known as RM4SCC, RoyalMail4SCC, British Royal Mail 4-State Customer Code and Royal Mail Barcode.
It encodes uppercase letters A to Z, numbers o to 9 and start/stop characters.
RM4SCC barcodes is used by Royal Mail for its Cleanmail service. It enables UK postcodes as well as Delivery Point Suffixes (DPSs) to be easily read by a machine at high speed.
Draw and Print RM4SCC Barcode Image in ASP.NET Web Forms
It is very simple to generate RM4SCC barcode image in ASP.NET by dragging and dropping barcode generator dll to ASP.NET project in your Visual Studio.
  1. Add BarcodeLib.Barcode.ASP.NET DLL to your Visual Studio Toolbox.
    • Right click ASP.NET Visual Studio Toolbox, select menu Choose Items....
    • In "Choose Toolbox Items" form, click button "Browse...", and select dll BarcodeLib.Barcode.ASP.NET.dll.
    • After selection, you will find four items under "Components" section LinearASPNET, DataMatrixASPNET, PDF417ASPNET, and QRCodeASPNET.
  2. Copy "linear.aspx" and "linear.aspx.cs" to your project folder.
  3. Drag and drop LinearASPNET to your Visual ASP.NET project.
  4. Select RM4SCC in Type item under Properties window.
  5. Reset other properties of RM4SCC in Properties window if necessary.
Generate ASP.NET RM4SCC Barcode Image Using C# & VB Codes
  1. To generate RMRSCC barcode in ASP.NET applications, you need to add BarcodeLib.Barcode.ASP.NET DLL to your ASP.NET project reference.
  2. Then, you may compile codes to generate C# & VB RM4SCC barcode as below.
How to generate C# RM4SCC barcode image in ASP.NET applications:
     BarcodeLib.Barcode.Linear rm4scc = new BarcodeLib.Barcode.Linear();
rm4scc.Type = BarcodeType.RM4SCC;
rm4scc.Data = "RM4SCCBARCODE";

rm4scc.UOM = UnitOfMeasure.PIXEL;
rm4scc.BarWidth = 1;
rm4scc.BarHeight = 60;
rm4scc.LeftMargin = 0;
rm4scc.RightMargin = 0;
rm4scc.TopMargin = 0;
rm4scc.BottomMargin = 0;

rm4scc.ImageFormat = System.Drawing.Imaging.ImageFormat.Bmp;

// Save barcode image into your system
rm4scc.drawBarcode("c:// rm4scc.bmp");
How to generate VB RM4SCC barcode image in ASP.NET applications:
     Dim rm4scc As New BarcodeLib.Barcode.Linear()
rm4scc.Type = BarcodeType.RM4SCC
rm4scc.Data = "RM4SCCBARCODE"

rm4scc.UOM = UnitOfMeasure.PIXEL
rm4scc.BarWidth = 1
rm4scc.BarHeight = 60
rm4scc.LeftMargin = 0
rm4scc.RightMargin = 0
rm4scc.TopMargin = 0
rm4scc.BottomMargin = 0

rm4scc.ImageFormat = System.Drawing.Imaging.ImageFormat.Bmp

' Save barcode image into your system
rm4scc.drawBarcode("c:// rm4scc.bmp")
Generate RM4SCC Barcode in Internet Information Services (IIS)
  1. Download and unzip the free trial package.
  2. Copy "barcode" folder in the package to your IIS folder.
  3. Create a new virtual directory in your IIS, named as barcode.
  4. Link the virtual directory to the above "barcode" folder.
  5. Restart your IIS and navigate to:
    http://YourDomain:Port/barcode/linear.aspx?Type=27&Data=RM4SCCBARCODE&Barwidth=1&BarHeight=60&UOM=0
All Supported ASP.NET Barcode Symbologies
Support Linear Barcodes:
Support Matrix Barcodes:
2D Barcodes: Data Matrix, PDF 417, QR Code.



Other Related Barcode Generation Articles

ASP.NET C# & VB.NET Barcode Generation Guide