ByteScout BarCode Generator SDK - C# - QR Code Barcode With Calender Entry - ByteScout

ByteScout BarCode Generator SDK – C# – QR Code Barcode With Calender Entry

  • Home
  • /
  • Articles
  • /
  • ByteScout BarCode Generator SDK – C# – QR Code Barcode With Calender Entry

QR code barcode with calender entry in C# using ByteScout Barcode SDK

Tutorial: how to do QR code barcode with calender entry in C#

We’ve created and updating regularly our sample code library so you may quickly learn QR code barcode with calender entry and the step-by-step process in C#. ByteScout Barcode SDK helps with QR code barcode with calender entry in C#. ByteScout Barcode SDK is the robost library (Software Development Kit) that is designed for automatic generation of high-quality barcodes for printing, electronic documents and pdf. All popular barcode types are supported from Code 39 and Code 129 to QR Code, UPC, GS1, GS-128, Datamatrix, PDF417, Maxicode and many others. Provides support for full customization of fonts, colors, output and printing sizes. Special tools are included to verify output quality and printing quality. Can add generated barcode into new or existing documents, images and PDF.

You will save a lot of time on writing and testing code as you may just take the code below and use it in your application. To do QR code barcode with calender entry in your C# project or application you may simply copy & paste the code and then run your app! Enhanced documentation and tutorials are available along with installed ByteScout Barcode SDK if you’d like to dive deeper into the topic and the details of the API.

Free trial version of ByteScout Barcode SDK is available on our website. Get it to try other samples for C#.

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

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

Program.cs
      
using System; using System.Diagnostics; using Bytescout.BarCode; namespace QRCodeWithCalenderEntry { class Program { static void Main(string[] args) { try { // Create new barcode using (Barcode 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 (Exception ex) { Console.WriteLine("Error: " + ex.Message); Console.WriteLine("Press enter key to exit..."); Console.ReadLine(); } } /// <summary> /// Return Calender Entry Format /// </summary> /// <returns></returns> private static string GetCalenderEntryFormatText() { 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"; } } }

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