ByteScout BarCode Generator SDK - VB.NET - Composed Barcode - ByteScout

ByteScout BarCode Generator SDK – VB.NET – Composed Barcode

  • Home
  • /
  • Articles
  • /
  • ByteScout BarCode Generator SDK – VB.NET – Composed Barcode

composed barcode in VB.NET and ByteScout Barcode SDK

Learn to code composed barcode in VB.NET: How-To tutorial

ByteScout tutorials describe the stuff for programmers who use VB.NET. ByteScout Barcode SDK was made to help with composed barcode in VB.NET. ByteScout Barcode SDK is the robost SDK that generates high quality barcode images and pdf. Can generate all popular types of barcodes from QR Code, Code 39, Code 128, UPC, GS1, GS-128, PDF417, Datamatrix to more exotic barcode types. Fully customizable fonts, colors, print sizes. Includes special functions to ensure output quality, and tools for adding barcodes to new or existing pdf files and images.

Want to speed up the application development? Then this VB.NET, code samples for VB.NET, developers help to speed up the application development and writing a code when using ByteScout Barcode SDK. Just copy and paste this VB.NET sample code to your VB.NET application’s code editor, add a reference to ByteScout Barcode SDK (if you haven’t added yet) and you are ready to go! Updated and detailed documentation and tutorials are available along with installed ByteScout Barcode SDK if you’d like to learn more about the topic and the details of the API.

Visit our website to get a free trial version of ByteScout Barcode SDK. Free trial contains many of source code samples to help you with your VB.NET project.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

Module1.vb
      
Imports System.Drawing Imports Bytescout.BarCode Module Module1 Sub Main() Using barcode As New Barcode("demo", "demo") barcode.Symbology = SymbologyType.Code128 barcode.Margins = New Margins(0, 0, 0, 0) barcode.DrawQuietZones = False barcode.Value = "123123" Dim image1 As Image = barcode.GetImage() barcode.Value = "123" Dim image2 As Image = barcode.GetImage() Using composer As New ImageComposer(10, 5, CompositionMode.ArrangeHorizontally) composer.AddImage(image1) composer.AddImage(image2, 0, 0, 90) composer.SaveComposedImage("result.png") ' Show image in default image viewer Process.Start("result.png") End Using End Using End Sub End Module

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Barcode SDK Home Page

Explore ByteScout Barcode SDK Documentation

Explore Samples

Sign Up for ByteScout Barcode SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Barcode SDK Home Page

Explore ByteScout Barcode SDK Documentation

Explore Samples

Sign Up for ByteScout Barcode SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next