Our Customers
Contact Us Email: support@barcodelib.com
Home > .NET WinForms Barcode > Windows Forms Barcode Generation Guide > RM4SCC Barcode Generation Guide for .NET WinForms Application
Download Barcode for .NET WinForms Trial

.NET Windows Forms RM4SCC Barcode Generation DLL

RM4SCC Barcode Generator Library in .NET WinForms Applications
  • RM4SCC barcode image library supports .NET Framework 2.0, 3.0 & greater versions
  • 20+ linear and 2d barcodes including RM4SCC can be encoded and created in .NET Windows Forms
  • Standard RM4SCC barcode can be generated in .NET WinForms program, under barcode specification
  • Generated RM4SCC barcode image can be encoded into JPEG, TIFF, BMP, PNG and GIF formats
  • Free trial package for testing RM4SCC barcode generation functions in .NET WinForms is provided
  • .NET WinForms barcode generator dll is highly appreciated by 1000+ .NET developers
.NET Windows Forms RM4SCC Barcode Introduction
RM4SCC is a linear barcode, also known as known as RM4SCC, RoyalMail4SCC, British Royal Mail 4-State Customer Code and Royal Mail Barcode.
Encodable characters:
  • 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
  • Uppercase letters (A through Z)
Application:

RM4SCC symbology is used by Royal Mail (United Kingdom) post office and Singapore post office for Postal code and automatic mail sorting.
RM4SCC Barcode Image Encoding in .NET Windows Forms Applications
  1. Add reference (BarcodeLib.Barcode.WinForms.dll) to your Visual Studio Toolbox.
  2. Drag LinearWinForm, one of the four components (LinearWinForm, QRCodeWinForm, DataMatrixWinForm and PDF417WinForm), to your .NET Windows Forms program.
  3. Select RM4SCC barcode under Type item of the Properties window.
  4. Reset other parameters of your RM4SCC barcode through Properties window.
.NET WinForms RM4SCC Barcode Image Encoding Using C# & VB Class

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

  1. Add BarcodeLib.Barcode.WinForms.dll to your .NET WinForms project reference.
  2. Generate RM4SCC barcode image in .NET WinForms using the following demo codes.
.NET Windows Forms RM4SCC barcode image generation with demo codes (C#)
     BarcodeLib.Barcode.Linear rm4scc = new BarcodeLib.Barcode.Linear();
rm4scc.Type = BarcodeType.RM4SCC;
rm4scc.Data = "YYCMC154230";

rm4scc.UOM = UnitOfMeasure.CM;
rm4scc.BarWidth = 0.1f;
rm4scc.BarHeight = 2;

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

// Save RM4SCC barcode image into your system;
rm4scc.drawBarcode("c://rm4scc.gif");
.NET Windows Forms RM4SCC barcode image generation with demo codes (VB)
     Dim rm4scc As New BarcodeLib.Barcode.Linear()
rm4scc.Type = BarcodeType.RM4SCC
rm4scc.Data = "YYCMC154230"

rm4scc.UOM = UnitOfMeasure.CM
rm4scc.BarWidth = 0.1F
rm4scc.BarHeight = 2

rm4scc.ImageFormat = System.Drawing.Imaging.ImageFormat.Gif

' Save RM4SCC barcode image into your system;
rm4scc.drawBarcode("c://rm4scc.gif")
ALL .NET WinForms Barcode Types
WinForms 1D Barcodes:
WinForms 2D Barcodes:
2D barcodes in .NET WinForms: Data Matrix, PDF 417, QR-Code.



See Also: Related Barcoding Tutorials

.NET Windows Forms Visual C# & Visual Basic Barcoding Tutorials