The documentation is designed for a specific purpose to help you to apply the features on your side. What is ByteScout Premium Suite? It is the bundle that includes twelve SDK products from ByteScout including tools and components for PDF, barcodes, spreadsheets, screen video recording. It can help you to set unicode text in barcode with barcode sdk in your VB.NET application.
The following code snippet for ByteScout Premium Suite works best when you need to quickly set unicode text in barcode with barcode sdk in your VB.NET application. Simply copy and paste in your VB.NET project or application you and then run your app! Enjoy writing a code with ready-to-use sample codes in VB.NET.
Trial version of ByteScout Premium Suite is available for free. Source code samples are included to help you with your VB.NET app.
On-demand (REST Web API) version:
Web API (on-demand version)
On-premise offline SDK for Windows:
60 Day Free Trial (on-premise)
Imports Bytescout.BarCode
Imports System.Drawing
Module Module1
Sub Main()
' Create new barcode
Dim barcode As New Barcode()
' Set symbology
barcode.Symbology = SymbologyType.QRCode
' set QR code encoding to UTF8 so will be able to encode Unicode
barcode.Options.Encoding = System.Text.Encoding.UTF8()
' Set Unicode barcode value
barcode.Value = "??"
' show caption for 2d barcodes
barcode.DrawCaptionFor2DBarcodes = True
' set caption font to Arial Unicode MS so it will display the caption
barcode.CaptionFont = New Font("Arial Unicode MS", 8)
' Save barcode to image
barcode.SaveImage("qrcode.png")
' Show image in default image viewer
Process.Start("qrcode.png")
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: