QR Code With CalenderEntry - VB.NET
BarCode SDK sample in VB.NET demonstrating ‘QR Code With CalenderEntry’
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