ByteScout Barcode Suite - VB.NET - Generate qr code barcode with calenderentry with barcode sdk - ByteScout

ByteScout Barcode Suite – VB.NET – Generate qr code barcode with calenderentry with barcode sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Barcode Suite – VB.NET – Generate qr code barcode with calenderentry with barcode sdk

How to generate qr code barcode with calenderentry with barcode sdk in VB.NET and ByteScout Barcode Suite

Learn to generate qr code barcode with calenderentry with barcode sdk in VB.NET

An easy to understand guide on how to generate qr code barcode with calenderentry with barcode sdk in VB.NET with this source code sample. ByteScout Barcode Suite is the set that includes three different SDK products to generate barcodes, read barcodes and read and write spreadsheets: Barcode SDK, Barcode Reader SDK and Spreadsheet SDK. It can generate qr code barcode with calenderentry with barcode sdk in VB.NET.

Want to quickly learn? This fast application programming interfaces of ByteScout Barcode Suite for VB.NET plus the guidelines and the code below will help you quickly learn how to generate qr code barcode with calenderentry with barcode sdk. Follow the instructions from scratch to work and copy the VB.NET code. Enjoy writing a code with ready-to-use sample codes in VB.NET.

The trial version of ByteScout Barcode Suite can be downloaded for free from our website. It also includes source code samples for VB.NET and other programming languages.

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

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

Program.vb
      
Imports Bytescout.BarCode Module Program Sub Main() Try ' Create new barcode Dim barcode As Barcode = New Barcode ' Set symbology barcode.Symbology = SymbologyType.QRCode ' Get QRCode value in CalenderEntry format barcode.Value = GetCalenderEntryFormatText() ' Save barcode to image barcode.SaveImage("result.png") ' Show image in default image viewer Process.Start("result.png") Catch ex As Exception Console.WriteLine("Error: " + ex.Message) Console.WriteLine("Press enter key to exit...") Console.ReadLine() End Try End Sub ''' <summary> ''' Return Calender Entry Format ''' </summary> ''' <returns></returns> Private Function GetCalenderEntryFormatText() As String Return "BEGIN:VCALENDAR BEGIN:VEVENT DTSTART:20181113T100000Z DTEND:20181113T150000Z SUMMARY:New Calendar Entry DESCRIPTION:Description Text LOCATION:Chicago RRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3 END:VEVENT END:VCALENDAR" End Function End Module

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Barcode Suite Home Page

Explore ByteScout Barcode Suite Documentation

Explore Samples

Sign Up for ByteScout Barcode Suite 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 Suite Home Page

Explore ByteScout Barcode Suite Documentation

Explore Samples

Sign Up for ByteScout Barcode Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next