Free Barcode Maker Component for .Net
Create bitmaps containing Code 25, Code 39 or Code 128 barcodes in Visual Studio. This simple component is free of license and easy to use.
Example VB.Net code:
Dim maker As SoftekBarcodeMakerLib2.BarcodeMaker
maker = New SoftekBarcodeMakerLib2.BarcodeMaker
maker.Width = PictureBox1.Width
maker.Height = PictureBox1.Height
maker.barcode = “1234567890”
‘ Type = 0 for Code 39, 1 for Code 25 or 2 for Code 128
maker.Type = 0
‘ Code128SymSet = “a”, “b” or “c”
PictureBox1.Image = maker.MakeBarcode()
Please note that the Barcode Maker Component is not part of the Barcode Reader SDK and is not provided with a guarantee of any kind.