We regularly create and update our sample code library so you may quickly learn general barcode reading example with barcode reader sdk and the step-by-step process in VB.NET. ByteScout Premium Suite was made to help with general barcode reading example with barcode reader sdk in VB.NET. ByteScout Premium Suite is the set that includes 12 SDK products from ByteScout including tools and components for PDF, barcodes, spreadsheets, screen video recording.
This rich and prolific sample source code in VB.NET for ByteScout Premium Suite contains various functions and options you should do calling the API to implement general barcode reading example with barcode reader sdk. To use general barcode reading example with barcode reader sdk in your VB.NET project or application just copy & paste the code and then run your app! Check these VB.NET sample code examples to see if they acknowledge to your needs and requirements for the project.
ByteScout Premium Suite free trial version is available for download from our website. Free trial also includes programming tutorials along with source code samples.
On-demand (REST Web API) version:
Web API (on-demand version)
On-premise offline SDK for Windows:
60 Day Free Trial (on-premise)
Imports System.IO Imports Bytescout.BarCodeReader Module Module1 Sub Main() Const imageFile As String = "Barcode.jpg" Console.WriteLine("Reading barcode(s) from image {0}", Path.GetFullPath(imageFile)) Dim reader As New Reader() reader.RegistrationName = "demo" reader.RegistrationKey = "demo" ' Set barcode type to find reader.BarcodeTypesToFind.All = True ' We recommend to use specific barcode types to avoid false positives, e.g.: ' reader.BarcodeTypesToFind.QRCode = True ' reader.BarcodeTypesToFind.Code39 = True; ' ----------------------------------------------------------------------- ' NOTE: We can read barcodes from specific page to increase performance . ' For sample please refer to "Decoding barcodes from PDF by pages" program. ' ----------------------------------------------------------------------- ' Read barcodes Dim barcodes As FoundBarcode() = reader.ReadFrom(imageFile) For Each barcode As FoundBarcode In barcodes Console.WriteLine("Found barcode with type '{0}' and value '{1}'", barcode.Type, barcode.Value) Next Console.WriteLine("Press any key to exit..") Console.ReadKey() End Sub End Module
60 Day Free Trial or Visit ByteScout Premium Suite Home Page
Explore ByteScout Premium Suite Documentation
Explore Samples
Sign Up for ByteScout Premium Suite Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
60 Day Free Trial or Visit ByteScout Premium Suite Home Page
Explore ByteScout Premium Suite Documentation
Explore Samples
Sign Up for ByteScout Premium Suite Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
also available as: