Barcode 39 Visual Basic tutorial shows how to create Code 39 barcode in VB.NET using Barcode Generator SDK. Use the sample source code below to generate Code39.
Visual Basic .NET
Imports Bytescout.BarCode Module Module1 Sub Main() ' Create new barcode Dim barcode As New Barcode() ' Set symbology to barcode 39 type barcode.Symbology = SymbologyType.Code39 ' Set value barcode.Value = "Sample" ' Save barcode to image barcode.SaveImage("result.png") ' Show image in default image viewer Process.Start("result.png") End Sub End Module