.NET Windows Forms barcode SDK is a barcode generating control which is able to generate Code 128, Code 128a, Code 128b, and Code 128c barcodes for any .NET framework applications. This .NET Code 128 Windows Forms barcode control is completely developed in managed C#.NET. You are able to create the Code 128 barcodes with VB.NET, managed C++ and Delphi for .NET as well as C#. Both C# and VB.NET code sample for Code 128 creating are available with the .NET WinForms barcode control.
Related .net document control helps:
mvc document viewer: ASP.NET MVC Document Viewer: view, annotate, redact files on ASP.NET MVC web projects
asp.net edit pdf image control:
ASP.NET PDF Image Edit Control: online insert, edit PDF images in C#
asp.net pdf document viewer c#: ASP.NET PDF Document Viewer in C#: open, display, view, annotate, redact Adobe PDF files online in ASP.NET MVC & WebForm...
asp.net view powerpoint: ASP.NET PowerPoint Document Viewer Control (MVC & WebForms): view ppt, pptx files online in C# using ASP.NET
asp.net mvc display tiff: ASP.NET Tiff Viewer: view, annotate multipage Tiff images in ASP.NET MVC, WebForms using C# Control
asp.net pdf viewer control free: ASP.NET PDF Viewer Control: view, navigate, zoom Adobe PDF document in C# ASP.NET
asp.net mvc image viewer: ASP.NET Image Viewer Control(MVC & WebForms): view, annotate, redact, convert image files in html, JQuery
Code 128 barcode is a linear barcode symbology which is able to encode alphanumeric characters or numeric-only characters. Code 128 is a high density barcode symbology and capable of encoding full 128 characters in ASCII table. It has broad applications in shipping and packaging industries. Code 128 is defined by the standards ISO/IEC 15417:2007.
Benefits of Code 128 Generator for .NET WinForms
- Easy to use .NET Windows Forms control for generating Code 128 barcodes in any .NET framework applications
- Capable of generating Code 128 barcode images by using of C#, VB.NET, managed C++ as well as Delphi for .NET.
- Compatible with .NET framework 2.0, 3.0, 3.5, 4.0 onwards, and can be used in Visual Studio 2005/2008/2010
- Create quality Code 128 barcodes in .NET applications like, Console Applications, Class Library, Window Service, Crystal Reports Applications as well as Windows Applications
- Automatic checksum digits calculation support for the Code 128 barcode symbologies using the .NET WinForms barcode components.
- Simply adjust the Code 128 barcode width (X dimension) and height (Y) as specified Code 128 barcode size requirements.
- Export high quality Code 128 images even on low output resolution printers with thermal printers support.
- Generated Code 128 barcode images can be saved as jpg, gif, tiff, bmp, png, and other image formats.
Create Code 128 Barcodes with the .NET Windows Forms barcode component
It is an easy Code 128 barcode printing method in any .NET framework applications by using Rasteredge .NET Forms barcode generating control. It is able to create Code 128 barcode images that can be saved to a file or sent to a printer directly. To create Code 128 barcode images, please download the .NET Windows Forms barcode component and install it on your project.
Installation of .NET Windows Forms barcode control in VS
- Download the .NET Forms barcode control and unzip the file to a folder.
- Copy the .NET WinForms Barcode DLL to the project directory.
- Open the project and display the form that will integrate Code 128 barcode printing function
- Choose Toolbox under View to display the Toolbox.
- Right click the Toolbox and select "choose items", and switch to the ".NET Framework Components"
- Click the "Browse", and choose the .NET WinForms barcode DLL under your project directory
- The barcode control has been successfully installed
Create Code 128 Barcodes with .NET WinForms Barcode control in C#
using Rasteredge.WinForms.Barcode;
// construct a linear barcode object
Linear winformscode128 = new Linear();
// set linear barcode symbology to be code128
winformscode128.Symbology = Symbology.code128;
// set code128 code text to encode
winformscode128.Code = "01234567890";
//draw barcode and save into image file in gif format
winformscode128.drawBarcode2ImageFile("code128-in-winformscsharp.gif");
Print Code 128 Barcodes with .NET WinForms Barcode control in Visual Basic .NET
' construct a linear barcode object
Dim winformscode128 As Rasteredge.Barcode.Linear
winformscode128 = New Rasteredge.Barcode.Linear()
' set linear barcode symbology to be code128
winformscode128.Symbology = Rasteredge.Barcode.Symbology.code128
' set code128 code text to encode
winformscode128.Code = "01234567890"
' draw barcode and save into image file in gif format
winformscode128.drawBarcode2ImageFile("code128-in-winformsvb.gif")